Skip to content

Commit

Permalink
Release v1.31.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Oct 5, 2018
1 parent 3545ecf commit 947dd2a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN mkdir -p /para/lib
WORKDIR /para

ENV PARA_PLUGIN_ID="para-cache-hazelcast" \
PARA_PLUGIN_VER="1.30.0"
PARA_PLUGIN_VER="1.31.0"

RUN wget -q -P /para/lib/ https://oss.sonatype.org/service/local/repositories/releases/content/com/erudika/$PARA_PLUGIN_ID/$PARA_PLUGIN_VER/$PARA_PLUGIN_ID-$PARA_PLUGIN_VER-shaded.jar \
|| exit 2
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,27 +61,27 @@
<dependency>
<groupId>com.erudika</groupId>
<artifactId>para-core</artifactId>
<version>1.30.0</version>
<version>1.31.0</version>
<scope>provided</scope>
</dependency>

<!-- HAZELCAST -->
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
<version>3.10.4</version>
<version>3.10.5</version>
</dependency>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-aws</artifactId>
<version>2.2</version>
<version>2.3</version>
</dependency>

<!-- TESTING -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.11.0</version>
<version>2.22.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -97,7 +97,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<version>3.2.0</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -128,7 +128,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.20.1</version>
<version>2.22.0</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -202,7 +202,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.4.1.1168</version>
<version>3.5.0.1254</version>
</plugin>
</plugins>
</build>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/erudika/para/cache/CacheTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void testPut() throws InterruptedException {
c.put("", "empty");
c.put("1", "");
c.put("2", null);
c.put("123", new Integer(123));
c.put("123", Integer.valueOf(123));
c.put("1234", new User("111"));
assertFalse(c.contains(""));
assertTrue(c.contains("1"));
Expand Down

0 comments on commit 947dd2a

Please sign in to comment.