Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzhiguo committed Oct 24, 2023
1 parent c235a8e commit 3f79291
Show file tree
Hide file tree
Showing 10 changed files with 43 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ hs_err_pid*
*.iml
.idea/
/target
.flattened-pom.xml
2 changes: 1 addition & 1 deletion cache-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>local-cache</artifactId>
<groupId>io.meshware.cache</groupId>
<version>0.1.2</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
6 changes: 3 additions & 3 deletions cache-consul/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>local-cache</artifactId>
<groupId>io.meshware.cache</groupId>
<version>0.1.2</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -27,12 +27,12 @@
<dependency>
<groupId>io.meshware.cache</groupId>
<artifactId>cache-ihc</artifactId>
<version>0.1.2</version>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>io.meshware.cache</groupId>
<artifactId>cache-ohc</artifactId>
<version>0.1.2</version>
<version>${revision}</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion cache-ihc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>local-cache</artifactId>
<groupId>io.meshware.cache</groupId>
<version>0.1.2</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion cache-ohc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>local-cache</artifactId>
<groupId>io.meshware.cache</groupId>
<version>0.1.2</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion cache-redis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>local-cache</artifactId>
<groupId>io.meshware.cache</groupId>
<version>0.1.2</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion cache-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>local-cache</artifactId>
<groupId>io.meshware.cache</groupId>
<version>0.1.2</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion cache-samples/springboot-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>cache-samples</artifactId>
<groupId>io.meshware.cache</groupId>
<version>0.1.2</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion cache-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>local-cache</artifactId>
<groupId>io.meshware.cache</groupId>
<version>0.1.2</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
38 changes: 32 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>io.meshware.cache</groupId>
<artifactId>local-cache</artifactId>
<version>0.1.2</version>
<version>${revision}</version>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<name>meshware-local-cache-parent</name>
Expand Down Expand Up @@ -54,6 +54,7 @@
</modules>

<properties>
<revision>0.1.3-SNAPSHOT</revision>
<jdk.version>1.8</jdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
Expand Down Expand Up @@ -108,22 +109,22 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>2.5.15</version>
<version>2.7.16</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>2.5.15</version>
<version>2.7.16</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>2.5.15</version>
<version>2.7.16</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>2.5.15</version>
<version>2.7.16</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Expand All @@ -138,7 +139,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.5.15</version>
<version>2.7.16</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -316,6 +317,31 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.5.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 3f79291

Please sign in to comment.