Browse Source

整理 pom.xml

v-1.5.x
yangkai.shen 7 years ago
parent
commit
334104ecb9
3 changed files with 9 additions and 10 deletions
  1. +1
    -1
      spring-boot-demo-logback/pom.xml
  2. +0
    -1
      spring-boot-demo-mybatis/pom.xml
  3. +8
    -8
      spring-boot-demo-parent/pom.xml

+ 1
- 1
spring-boot-demo-logback/pom.xml View File

@@ -5,7 +5,7 @@

<artifactId>spring-boot-demo-logback</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<packaging>war</packaging>

<name>spring-boot-demo-logback</name>
<description>Demo project for Spring Boot</description>


+ 0
- 1
spring-boot-demo-mybatis/pom.xml View File

@@ -39,5 +39,4 @@
<finalName>spring-boot-demo-mybatis</finalName>
</build>


</project>

+ 8
- 8
spring-boot-demo-parent/pom.xml View File

@@ -9,7 +9,7 @@
<packaging>pom</packaging>

<name>spring-boot-demo-parent</name>
<description>Demo project for Spring Boot</description>
<description>The parent of spring-boot-demo</description>

<modules>
<module>../spring-boot-demo-helloworld</module>
@@ -39,6 +39,11 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<!--DB-->
<dependency>
@@ -60,11 +65,7 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<build>
@@ -76,5 +77,4 @@
</plugins>
</build>


</project>
</project>

Loading…
Cancel
Save