Browse Source

🎨 规范 pom 文件格式

3.x
Yangkai.Shen 3 years ago
parent
commit
e6f741ebb4
4 changed files with 29 additions and 0 deletions
  1. +4
    -0
      common-tools/pom.xml
  2. +5
    -0
      demo-distributed-lock/demo-distributed-lock-api/pom.xml
  3. +10
    -0
      demo-distributed-lock/demo-distributed-lock-curator/pom.xml
  4. +10
    -0
      demo-distributed-lock/demo-distributed-lock-redisson/pom.xml

+ 4
- 0
common-tools/pom.xml View File

@@ -37,4 +37,8 @@
</dependency>
</dependencies>

<build>
<finalName>common-tools</finalName>
</build>

</project>

+ 5
- 0
demo-distributed-lock/demo-distributed-lock-api/pom.xml View File

@@ -46,4 +46,9 @@
</dependency>
</dependencies>


<build>
<finalName>demo-distributed-lock-api</finalName>
</build>

</project>

+ 10
- 0
demo-distributed-lock/demo-distributed-lock-curator/pom.xml View File

@@ -42,4 +42,14 @@
</dependency>
</dependencies>

<build>
<finalName>demo-distributed-lock-curator</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

+ 10
- 0
demo-distributed-lock/demo-distributed-lock-redisson/pom.xml View File

@@ -37,4 +37,14 @@
</dependency>
</dependencies>

<build>
<finalName>demo-distributed-lock-redisson</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

Loading…
Cancel
Save