-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changed build process to add exec-jar Added spring-maven dependency execution for fat-jar Added maven-version plugin Updated to version 1.1.1 * Changed build process to add exec-jar Added spring-maven dependency execution for fat-jar Added maven-version plugin Updated to version 1.1.1 * Updated profiles to fix profile including error * Added possible postgres config for example application * Added possible postgres config for example application New version 1.1.2 * Added possible postgres config for example application New version 1.1.2 * Added possible postgres config for example application New version 1.1.2 * Added possible postgres config for example application New version 1.1.2 Added missing classifier * Added possible postgres config for example application New version 1.1.3 Added missing classifier * Changed implementation of KeyRotationServiceImpl.java to anonymous implementation because there is an error with the typeresolver due to old java 6 dependency * Update sts version to 1.1.4 * New version of keymanagement * New version of keymanagement * New version of keymanagement * New version of keymanagement * Increased release timeout * Fixed Json parsing Bug in PopController#getPublicKeys * Increased version to 1.1.8 * Fixed json parser bug because of unneccessary toString(); * Increased version to 1.1.9 * Made CorsFilter Policy configurable because of IllegalStateException due to miss configuration * Increased version to 1.1.10 * Increased version to 1.1.11 * Made jwk cacheable in AuthServer * Increased version to 1.1.12 * Increased version of bouncycastle-adapter to 0.0.10 * Increased version to 1.1.13 * Added tests for AuthServer to see if cache is working * Changed sequence names to 'old names' to prevent errors in legacy databases because of missing sequences in hibernate * increased version to 1.1.14 * Updated SecurityConfiguration to disabled cors by configuration (default activated) * increased version to 1.1.15 * Downgraded jupiter-junit to version 5.9.6 because of test errors in AuthServerTest * Klartax prod issues (#166) * Increased version to 1.1.16 * Changed cors configuration to set disabled first to prevent cors configuration exceptions * Updated version to 1.17 * Replaced deprecated PostgreSQL94Dialect with PostgreSQLDialect * spring.jpa.open-in-view ist standardmäßig aktiviert: behoben * Excluded SecurityAutoConfiguration to prevent Spring from creating a default user * Changed SecurityConfiguration to allow access to swagger * Changed SecurityConfiguration to allow access to swagger * Excluded AutoConfiguration for UserDetailsService * Added RequestMatchers to address warnings for ignored paths * Increased version to 1.19 * Logs for error analyses (#167) * Increased version to 1.1.16 * Changed cors configuration to set disabled first to prevent cors configuration exceptions * Updated version to 1.17 * Replaced deprecated PostgreSQL94Dialect with PostgreSQLDialect * spring.jpa.open-in-view ist standardmäßig aktiviert: behoben * Excluded SecurityAutoConfiguration to prevent Spring from creating a default user * Changed SecurityConfiguration to allow access to swagger * Changed SecurityConfiguration to allow access to swagger * Excluded AutoConfiguration for UserDetailsService * Added RequestMatchers to address warnings for ignored paths * Increased version to 1.19 * Added logs for refreshing cache to see if there is a concurrent call to update cache which leads to sequence errors * Added logs for refreshing cache to see if there is a concurrent call to update cache which leads to sequence errors * Added logs for refreshing cache to see if there is a concurrent call to update cache which leads to sequence errors * Added logs for refreshing cache to see if there is a concurrent call to update cache which leads to sequence errors * update workflow to java 17 (#168) * update workflow to java 17 * Start next iteration with 1.1.20-SNAPSHOT * update maven plugin versions * [release] Prepare release 1.1.20 --------- Co-authored-by: marcelmeyer <[email protected]> Co-authored-by: Mme-adorsys <[email protected]>
- Loading branch information
1 parent
adf5b04
commit ea876d1
Showing
53 changed files
with
679 additions
and
424 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
<groupId>de.adorsys.sts</groupId> | ||
<artifactId>secure-token-service</artifactId> | ||
<version>1.1.0</version> | ||
<version>1.1.20</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>SecureTokenService</name> | ||
|
@@ -52,7 +52,7 @@ | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<spring-boot.version>3.0.6</spring-boot.version> | ||
<keystore-management.version>0.0.7</keystore-management.version> | ||
<keystore-management.version>0.0.10</keystore-management.version> | ||
<shedlock.version>5.3.0</shedlock.version> | ||
<springfox-swagger.version>3.0.0</springfox-swagger.version> | ||
<jackson.version>2.15.1</jackson.version> | ||
|
@@ -65,6 +65,14 @@ | |
<testcontainers.version>1.17.6</testcontainers.version> | ||
<nimbus-jose-jwt.version>9.31</nimbus-jose-jwt.version> | ||
<scmBranch/> | ||
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> | ||
<maven-source-plugin.version>3.3.0</maven-source-plugin.version> | ||
<maven-release-plugin.version>3.0.1</maven-release-plugin.version> | ||
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version> | ||
<buildnumber-maven-plugin.version>3.2.0</buildnumber-maven-plugin.version> | ||
<maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version> | ||
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> | ||
<maven-javadoc-plugin.version>3.6.0</maven-javadoc-plugin.version> | ||
</properties> | ||
|
||
<modules> | ||
|
@@ -441,7 +449,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.1.1</version> | ||
<version>${maven-javadoc-plugin.version}</version> | ||
<configuration> | ||
<charset>${project.build.sourceEncoding}</charset> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
|
@@ -451,7 +459,7 @@ | |
</plugin> | ||
<plugin> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<version>3.0.0-M1</version> | ||
<version>${maven-release-plugin.version}</version> | ||
<configuration> | ||
<releaseProfiles>release</releaseProfiles> | ||
<autoVersionSubmodules>true</autoVersionSubmodules> | ||
|
@@ -468,7 +476,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<version>${maven-jar-plugin.version}</version> | ||
<configuration> | ||
<archive> | ||
<manifest> | ||
|
@@ -492,7 +500,7 @@ | |
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>buildnumber-maven-plugin</artifactId> | ||
<version>1.4</version> | ||
<version>${buildnumber-maven-plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<phase>validate</phase> | ||
|
@@ -531,15 +539,15 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>2.8.2</version> | ||
<version>${maven-deploy-plugin.version}</version> | ||
<configuration> | ||
<deployAtEnd>true</deployAtEnd> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.13</version> | ||
<version>${nexus-staging-maven-plugin.version}</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>sonatype</serverId> | ||
|
@@ -550,7 +558,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.2.1</version> | ||
<version>${maven-source-plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
|
@@ -563,13 +571,8 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>3.0.1</version> | ||
<version>${maven-gpg-plugin.version}</version> | ||
<configuration> | ||
<keyname>[email protected]</keyname> | ||
<gpgArguments> | ||
<arg>--pinentry-mode</arg> | ||
<arg>loopback</arg> | ||
</gpgArguments> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
|
@@ -578,18 +581,13 @@ | |
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
<configuration> | ||
<gpgArguments> | ||
<arg>--pinentry-mode</arg> | ||
<arg>loopback</arg> | ||
</gpgArguments> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>${maven-javadoc-plugin.version}</version> | ||
<configuration> | ||
<source>17</source> | ||
<doclint>none</doclint> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.