|
@@ -4,16 +4,13 @@
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
<groupId>cn.com.qmth.examcloud</groupId>
|
|
|
<artifactId>examcloud-app-api</artifactId>
|
|
|
- <version>2.0-SNAPSHOT</version>
|
|
|
- <packaging>war</packaging>
|
|
|
+ <version>master-SNAPSHOT</version>
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
|
|
<parent>
|
|
|
- <!--<groupId>cn.com.qmth.examcloud</groupId>
|
|
|
+ <groupId>cn.com.qmth.examcloud</groupId>
|
|
|
<artifactId>examcloud-parent</artifactId>
|
|
|
- <version>2.0-SNAPSHOT</version>-->
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>1.5.18.RELEASE</version>
|
|
|
+ <version>master-SNAPSHOT</version>
|
|
|
</parent>
|
|
|
|
|
|
<properties>
|
|
@@ -22,39 +19,38 @@
|
|
|
<java.version>1.8</java.version>
|
|
|
</properties>
|
|
|
|
|
|
- <repositories>
|
|
|
- <repository>
|
|
|
- <id>qmth-public</id>
|
|
|
- <url>http://192.168.10.30:8081/repository/maven-public/</url>
|
|
|
- </repository>
|
|
|
- <repository>
|
|
|
- <id>central-repository</id>
|
|
|
- <url>https://repo.maven.apache.org/maven2</url>
|
|
|
- </repository>
|
|
|
- </repositories>
|
|
|
- <pluginRepositories>
|
|
|
- <pluginRepository>
|
|
|
- <id>qmth-public</id>
|
|
|
- <url>http://192.168.10.30:8081/repository/maven-public/</url>
|
|
|
- </pluginRepository>
|
|
|
- <pluginRepository>
|
|
|
- <id>central-repository</id>
|
|
|
- <url>https://repo.maven.apache.org/maven2</url>
|
|
|
- </pluginRepository>
|
|
|
- </pluginRepositories>
|
|
|
- <distributionManagement>
|
|
|
- <repository>
|
|
|
- <id>qmth-releases</id>
|
|
|
- <name>Snapshots Repository</name>
|
|
|
- <url>http://192.168.10.30:8081/repository/maven-releases/</url>
|
|
|
- </repository>
|
|
|
- <snapshotRepository>
|
|
|
- <id>qmth-snapshots</id>
|
|
|
- <url>http://192.168.10.30:8081/repository/maven-snapshots/</url>
|
|
|
- </snapshotRepository>
|
|
|
- </distributionManagement>
|
|
|
-
|
|
|
<dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud.rmi</groupId>
|
|
|
+ <artifactId>examcloud-commons-api</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>commons-codec</groupId>
|
|
|
+ <artifactId>commons-codec</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
@@ -109,7 +105,7 @@
|
|
|
<dependency>
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
<artifactId>swagger-bootstrap-ui</artifactId>
|
|
|
- <version>1.8.1</version>
|
|
|
+ <version>1.8.9</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
@@ -174,7 +170,7 @@
|
|
|
<configuration>
|
|
|
<archive>
|
|
|
<manifest>
|
|
|
- <mainClass>cn.com.qmth.examcloud.app.api.ApiApplication</mainClass>
|
|
|
+ <mainClass>cn.com.qmth.examcloud.app.ApiApplication</mainClass>
|
|
|
<addClasspath>true</addClasspath>
|
|
|
<classpathPrefix>./</classpathPrefix>
|
|
|
</manifest>
|
|
@@ -193,7 +189,7 @@
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
<configuration>
|
|
|
- <finalName>examcloud-core-print</finalName>
|
|
|
+ <finalName>examcloud-app-api</finalName>
|
|
|
<descriptors>
|
|
|
<descriptor>assembly.xml</descriptor>
|
|
|
</descriptors>
|
|
@@ -210,4 +206,5 @@
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
+
|
|
|
</project>
|