|
@@ -3,37 +3,30 @@
|
|
|
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>
|
|
|
<artifactId>examcloud-app-api</artifactId>
|
|
|
- <version>v4.1.0-SNAPSHOT</version>
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<parent>
|
|
|
<groupId>cn.com.qmth.examcloud</groupId>
|
|
|
<artifactId>examcloud-parent</artifactId>
|
|
|
- <version>v4.1.0-SNAPSHOT</version>
|
|
|
+ <version>${revision}</version>
|
|
|
+ <relativePath>../examcloud-parent/pom.xml</relativePath>
|
|
|
</parent>
|
|
|
|
|
|
- <properties>
|
|
|
- <examcloud.version>v4.1.0-SNAPSHOT</examcloud.version>
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
- <java.version>1.8</java.version>
|
|
|
- </properties>
|
|
|
-
|
|
|
- <dependencies>
|
|
|
+ <dependencies>
|
|
|
<dependency>
|
|
|
<groupId>cn.com.qmth.examcloud</groupId>
|
|
|
<artifactId>examcloud-support</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
+ <version>${project.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
<artifactId>examcloud-global-api</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
+ <version>${project.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
<artifactId>examcloud-core-basic-api-client</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
+ <version>${project.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
@@ -94,7 +87,6 @@
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
-
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
@@ -102,15 +94,6 @@
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
</plugin>
|
|
|
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-surefire-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <skip>true</skip>
|
|
|
- <skipTests>true</skipTests>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
-
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
@@ -156,4 +139,5 @@
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
+
|
|
|
</project>
|