Skip to content

Commit

Permalink
deploy 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ipipman committed Jun 30, 2024
1 parent 516235e commit b342164
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .flattened-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.ipipman</groupId>
<artifactId>cache-man</artifactId>
<version>0.0.1</version>
<version>2.0.0</version>
<packaging>pom</packaging>
<name>cache-man</name>
<description>cache-man</description>
Expand Down
4 changes: 2 additions & 2 deletions cache-core/.flattened-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.ipman</groupId>
<groupId>io.github.ipipman</groupId>
<artifactId>cache-core</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>2.0.0</version>
<name>cache-core</name>
<description>cache-core</description>
<url>https://github.com/ipipman/cache-man/cache-core</url>
Expand Down
5 changes: 2 additions & 3 deletions cache-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
<parent>
<groupId>io.github.ipipman</groupId>
<artifactId>cache-man</artifactId>
<version>0.0.1</version>
<version>${cache.version}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>cn.ipman</groupId>
<artifactId>cache-core</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>${cache.version}</version>

<name>cache-core</name>
<description>cache-core</description>
Expand Down
6 changes: 3 additions & 3 deletions cache-server/.flattened-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.ipman</groupId>
<groupId>io.github.ipipman</groupId>
<artifactId>cache-server</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>2.0.0</version>
<name>cache-server</name>
<description>cache-server</description>
<url>https://github.com/ipipman/cache-man/cache-server</url>
Expand Down Expand Up @@ -41,7 +41,7 @@
<dependency>
<groupId>cn.ipman</groupId>
<artifactId>cache-core</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>2.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
10 changes: 6 additions & 4 deletions cache-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<parent>
<groupId>io.github.ipipman</groupId>
<artifactId>cache-man</artifactId>
<version>0.0.1</version>
<version>${cache.version}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>cn.ipman</groupId>
<artifactId>cache-server</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>${cache.version}</version>

<name>cache-server</name>
<description>cache-server</description>

Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>cn.ipman</groupId>
<artifactId>cache-core</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>${cache.version}</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -73,7 +73,9 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>3.2.3</version>
<configuration>
<mainClass>cn.ipman.cache.server.CacheServerApplication</mainClass> <!-- 正确填写你的主类全限定名 -->
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@

<groupId>io.github.ipipman</groupId>
<artifactId>cache-man</artifactId>
<version>0.0.1</version>
<version>${cache.version}</version>

<name>cache-man</name>
<description>cache-man</description>
<packaging>pom</packaging>

<properties>
<cache.version>2.0.0</cache.version>
<java.version>17</java.version>
</properties>


<modules>
<module>cache-core</module>
<module>cache-server</module>
Expand Down Expand Up @@ -59,6 +59,7 @@

<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit b342164

Please sign in to comment.