Commit 98c41905 by 朱瑞泽

暂定

parent c0ffdde8
......@@ -4,7 +4,11 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gic</groupId>
<parent>
<groupId>com.gic</groupId>
<artifactId>gic-pom-base</artifactId>
<version>4.0-SNAPSHOT</version>
</parent>
<artifactId>gic-demo-pom</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
......@@ -12,18 +16,12 @@
<url>http://www.demogic.com</url>
<properties>
<gic-base-api>4.0-SNAPSHOT</gic-base-api>
<gic-commons>4.0-SNAPSHOT</gic-commons>
<gic-dubbo-extension>4.0-SNAPSHOT</gic-dubbo-extension>
<gic-platform-config>4.0-SNAPSHOT</gic-platform-config>
<gic-redis-data>3.0-SNAPSHOT</gic-redis-data>
<!-- 依赖版本,正式工程无需在此定义,同一会集成在 gic-pom-base -->
<gic-demo-common>1.0-SNAPSHOT</gic-demo-common>
<gic-demo-base-api>1.0-SNAPSHOT</gic-demo-base-api>
<gic-demo-config>1.0-SNAPSHOT</gic-demo-config>
<gic-demo-project-api>1.0-SNAPSHOT</gic-demo-project-api>
<!-- jar包版本 -->
<junit.version>4.12</junit.version>
<spring.version>5.1.7.RELEASE</spring.version>
<jackson.version>2.9.9</jackson.version>
......@@ -385,12 +383,6 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>9.0.13</version>
</dependency>
</dependencies>
</dependencyManagement>
......@@ -442,38 +434,34 @@
</configuration>
</plugin>
</plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<flattenMode>defaults</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<!-- ensure proper cleanup -->
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<flattenMode>defaults</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<!-- ensure proper cleanup -->
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</plugins>
</build>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment