|
@@ -5,7 +5,7 @@
|
|
|
<parent>
|
|
|
<artifactId>dcuc-coder</artifactId>
|
|
|
<groupId>com.dragoninfo</groupId>
|
|
|
- <version>2.0.0-SNAPSHOT</version>
|
|
|
+ <version>2.0.0-tjdsj-SNAPSHOT</version>
|
|
|
</parent>
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
<artifactId>dcuc-coder-service</artifactId>
|
|
@@ -80,7 +80,7 @@
|
|
|
<dependency>
|
|
|
<groupId>com.dragoninfo</groupId>
|
|
|
<artifactId>dcuc-common</artifactId>
|
|
|
- <version>${project.version}</version>
|
|
|
+ <version>2.0.0-SNAPSHOT</version>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
@@ -105,7 +105,43 @@
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
+ <packaging>${project.packaging}</packaging>
|
|
|
<profiles>
|
|
|
+
|
|
|
+
|
|
|
+ <profile>
|
|
|
+ <id>war</id>
|
|
|
+ <properties>
|
|
|
+ <project.packaging>war</project.packaging>
|
|
|
+ </properties>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.dragonsoft</groupId>
|
|
|
+ <artifactId>duceap-boot-starter-web</artifactId>
|
|
|
+
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-war-plugin</artifactId>
|
|
|
+ <version>2.1.1</version>
|
|
|
+ <configuration>
|
|
|
+ <failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
+
|
|
|
+ <packagingExcludes>WEB-INF/lib/duceap-support-licenseignore*.jar</packagingExcludes>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+ </profile>
|
|
|
<profile>
|
|
|
<id>jar</id>
|
|
|
<activation>
|