Skip to content

Commit 52b00a6

Browse files
committed
v1.0.5 release.
1 parent c8a459b commit 52b00a6

File tree

16 files changed

+15
-18
lines changed

16 files changed

+15
-18
lines changed

.mvn/release.sh

-3
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,15 @@ if [[ "$currentVersion" == *"SNAPSHOT"* ]] ; then
77
-DnewVersion=\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion}
88
developmentVersion=`./mvnw -q --non-recursive exec:exec -Dexec.executable=echo -Dexec.args='${project.version}'`
99
./mvnw build-helper:parse-version -DgenerateBackupPoms=false versions:set -DnewVersion="$currentVersion"
10-
1110
./mvnw clean release:prepare release:perform -B \
1211
-Dgoals='package' -DgenerateReleasePoms=false -DgenerateBackupPoms=false \
1312
-DreleaseVersion="$currentVersion" -DdevelopmentVersion="$developmentVersion"
1413
else
1514
git tag "v$currentVersion"
16-
1715
./mvnw build-helper:parse-version -DgenerateBackupPoms=false -DgenerateBackupPoms=false versions:set \
1816
-DnewVersion=\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion}
1917
./mvnw build-helper:parse-version -DgenerateBackupPoms=false -DgenerateBackupPoms=false versions:set \
2018
-DnewVersion=\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion} \
2119
-f step-4-java-ee-jaxrs-jboss-spring-security
22-
2320
git add . ; git commit -am "v$currentVersion release." ; git push --tags
2421
fi

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<name>${project.artifactId}</name>
88
<modelVersion>4.0.0</modelVersion>
99
<packaging>pom</packaging>
10-
<version>1.0.5</version>
10+
<version>1.0.6</version>
1111
<modules>
1212
<module>step-0-application-without-security</module>
1313
<module>step-0-test-application-without-security</module>

step-0-application-without-security/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-0-test-application-without-security/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-1-default-spring-security/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-1-test-default-spring-security/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-2-custom-authentication/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-2-test-custom-authentication/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-3-authorization/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-3-test-authorization/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-4-java-ee-jaxrs-jboss-spring-security/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<artifactId>step-4-java-ee-jaxrs-jboss-spring-security</artifactId>
1414
<name>${project.artifactId}</name>
1515
<packaging>war</packaging>
16-
<version>1.0.5</version>
16+
<version>1.0.6</version>
1717
<properties>
1818
<java.version>11</java.version>
1919
<json.version>1.1.4</json.version>

step-4-test-java-ee-jboss-spring-security/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-5-jdbc-authentication/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-5-spring-data-jdbc-authentication/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-5-spring-data-jpa-authentication/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

step-5-test-jdbc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-security-basics</artifactId>
77
<groupId>com.giuthub.daggerok</groupId>
88
<relativePath>..</relativePath>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111
<packaging>jar</packaging>
1212
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)