Skip to content

Commit 1c7eb1a

Browse files
committed
Release 0.0.2
1 parent 154cf47 commit 1c7eb1a

7 files changed

Lines changed: 25 additions & 10 deletions

File tree

cache-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>local-cache</artifactId>
77
<groupId>io.meshware.cache</groupId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

cache-ihc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>local-cache</artifactId>
77
<groupId>io.meshware.cache</groupId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

cache-ohc/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>local-cache</artifactId>
77
<groupId>io.meshware.cache</groupId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -60,7 +60,7 @@
6060
<dependency>
6161
<groupId>com.esotericsoftware</groupId>
6262
<artifactId>kryo</artifactId>
63-
<version>5.1.0</version>
63+
<version>5.1.1</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>com.esotericsoftware</groupId>

cache-redis/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>local-cache</artifactId>
77
<groupId>io.meshware.cache</groupId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

cache-samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>local-cache</artifactId>
77
<groupId>io.meshware.cache</groupId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>pom</packaging>

cache-samples/springboot-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>cache-samples</artifactId>
77
<groupId>io.meshware.cache</groupId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<groupId>io.meshware.cache</groupId>
66
<artifactId>local-cache</artifactId>
7-
<version>0.0.2-SNAPSHOT</version>
7+
<version>0.0.2</version>
88
<modelVersion>4.0.0</modelVersion>
99
<packaging>pom</packaging>
1010
<name>MeshWare :: LocalCache</name>
@@ -23,6 +23,13 @@
2323
</developer>
2424
</developers>
2525

26+
<scm>
27+
<tag>main</tag>
28+
<connection>scm:git:https://github.com/meshware/local-cache.git</connection>
29+
<developerConnection>scm:git:https://github.com/meshware/local-cache.git</developerConnection>
30+
<url>scm:git:https://github.com/meshware</url>
31+
</scm>
32+
2633
<licenses>
2734
<license>
2835
<name>Apache-2.0</name>
@@ -85,7 +92,7 @@
8592
<dependency>
8693
<groupId>org.projectlombok</groupId>
8794
<artifactId>lombok</artifactId>
88-
<version>1.18.2</version>
95+
<version>1.18.4</version>
8996
</dependency>
9097
<dependency>
9198
<groupId>org.springframework.boot</groupId>
@@ -214,6 +221,14 @@
214221
<artifactId>maven-dependency-plugin</artifactId>
215222
<version>${maven-dependency-plugin.version}</version>
216223
</plugin>
224+
<plugin>
225+
<groupId>org.codehaus.mojo</groupId>
226+
<artifactId>versions-maven-plugin</artifactId>
227+
<version>${maven-versions-plugin.version}</version>
228+
<configuration>
229+
<generateBackupPoms>false</generateBackupPoms>
230+
</configuration>
231+
</plugin>
217232
</plugins>
218233
</build>
219234
<distributionManagement>
@@ -228,5 +243,5 @@
228243
</distributionManagement>
229244
</profile>
230245
</profiles>
231-
246+
232247
</project>

0 commit comments

Comments
 (0)