Browse Source

🏗️ 新增基础模块

3.x
Yangkai.Shen 2 years ago
parent
commit
414f478bd6
2 changed files with 21 additions and 0 deletions
  1. +20
    -0
      demo-base/pom.xml
  2. +1
    -0
      pom.xml

+ 20
- 0
demo-base/pom.xml View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>spring-boot-demo</artifactId>
<groupId>com.xkcoding</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>demo-base</artifactId>
<version>1.0.0-SNAPSHOT</version>

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

</project>

+ 1
- 0
pom.xml View File

@@ -10,6 +10,7 @@

<modules>
<module>common-tools</module>
<module>demo-base</module>
<module>demo-helloworld</module>
<module>demo-properties</module>
<module>demo-actuator</module>


Loading…
Cancel
Save