Skip to content

Commit bb46d21

Browse files
committed
Back to snapshot
1 parent 2ad4428 commit bb46d21

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/BUILD.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Verify that builds and test pass.
116116
Set new version for the release.
117117

118118
```sh
119-
mvn versions:set -DnewVersion=0.4.8
119+
mvn versions:set -DnewVersion=0.4.9
120120
```
121121

122122
Perform build with release profile to add sources and javadoc. Perform deploy to OSS Sonatype Nexus:
@@ -131,8 +131,8 @@ If release is successful, commit the version and commit and tag changes in git.
131131
```sh
132132
mvn versions:commit
133133
git add *
134-
git commit -m "version 0.4.8"
135-
git tag -a v0.4.8 -m "version 0.4.8"
134+
git commit -m "version 0.4.9"
135+
git tag -a v0.4.9 -m "version 0.4.9"
136136
git push origin --tags
137137
```
138138

integration-tests/agent-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amadeus.session</groupId>
77
<artifactId>integration-tests</artifactId>
8-
<version>0.4.9</version>
8+
<version>0.4-SNAPSHOT</version>
99
</parent>
1010
<name>agent-tests</name>
1111
<packaging>jar</packaging>

integration-tests/arquillian-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amadeus.session</groupId>
77
<artifactId>integration-tests</artifactId>
8-
<version>0.4.9</version>
8+
<version>0.4-SNAPSHOT</version>
99
</parent>
1010
<packaging>jar</packaging>
1111
<properties>

integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.amadeus</groupId>
99
<artifactId>session</artifactId>
10-
<version>0.4.9</version>
10+
<version>0.4-SNAPSHOT</version>
1111
</parent>
1212
<packaging>pom</packaging>
1313
<name>integration-tests</name>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.amadeus</groupId>
66
<artifactId>session</artifactId>
7-
<version>0.4.9</version>
7+
<version>0.4-SNAPSHOT</version>
88
<packaging>pom</packaging>
99
<name>HttpSessionReplacer</name>
1010
<description>Provides management of application sessions via a session repository (e.g. Redis). General JEE container use case with HttpSession is supported.</description>

session-agent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amadeus</groupId>
77
<artifactId>session</artifactId>
8-
<version>0.4.9</version>
8+
<version>0.4-SNAPSHOT</version>
99
</parent>
1010
<name>session-agent</name>
1111
<description>JVM agent that enables session support in a JEE container.</description>

session-replacement/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.amadeus</groupId>
77
<artifactId>session</artifactId>
8-
<version>0.4.9</version>
8+
<version>0.4-SNAPSHOT</version>
99
</parent>
1010
<name>session-replacement</name>
1111
<description>Implementation of session management for JEE HttpSessions and general use case. Includes implemenations of in-memory and redis session distribution.</description>

0 commit comments

Comments
 (0)