|
|
@ -7,14 +7,14 @@
|
|
|
|
<groupId>com.kiisoo</groupId>
|
|
|
|
<groupId>com.kiisoo</groupId>
|
|
|
|
<artifactId>ic</artifactId>
|
|
|
|
<artifactId>ic</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<name>youke</name>
|
|
|
|
<name>youke</name>
|
|
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.1.6.RELEASE</version>
|
|
|
|
<version>2.1.6.RELEASE</version>
|
|
|
|
<relativePath />
|
|
|
|
<relativePath/>
|
|
|
|
<!-- 1-->
|
|
|
|
<!-- 1-->
|
|
|
|
</parent>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
@ -25,17 +25,25 @@
|
|
|
|
</properties>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependencies>
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>com.kiisoo.aegis</groupId>-->
|
|
|
|
<!-- <groupId>com.kiisoo.aegis</groupId>-->
|
|
|
|
<!-- <artifactId>aegis-common</artifactId>-->
|
|
|
|
<!-- <artifactId>aegis-common</artifactId>-->
|
|
|
|
<!-- <version>0.5.0-SNAPSHOT</version>-->
|
|
|
|
<!-- <version>0.5.0-SNAPSHOT</version>-->
|
|
|
|
<!-- <exclusions>-->
|
|
|
|
<!-- <exclusions>-->
|
|
|
|
<!-- <exclusion>-->
|
|
|
|
<!-- <exclusion>-->
|
|
|
|
<!-- <artifactId>slf4j-log4j12</artifactId>-->
|
|
|
|
<!-- <artifactId>slf4j-log4j12</artifactId>-->
|
|
|
|
<!-- <groupId>org.slf4j</groupId>-->
|
|
|
|
<!-- <groupId>org.slf4j</groupId>-->
|
|
|
|
<!-- </exclusion>-->
|
|
|
|
<!-- </exclusion>-->
|
|
|
|
<!-- </exclusions>-->
|
|
|
|
<!-- </exclusions>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
@ -172,7 +180,7 @@
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<scope>test</scope>
|
|
|
|
<!--<exclusions>
|
|
|
|
<!--<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
@ -279,6 +287,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
|
|
<!-- 对丢失web.xml检测机制进行忽略, Dynamic Web Module 3.0 工程时代不需要web.xml文件注册相关内容的,所以工程默认不生成web.xml。-->
|
|
|
|
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|