|
@@ -1,100 +1,62 @@
|
|
|
-<?xml version="1.0" encoding="UTF-8"?>
|
|
|
-<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
- 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>cn.com.qmth.examcloud.service</groupId>
|
|
|
- <artifactId>core</artifactId>
|
|
|
- <version>0.1.0</version>
|
|
|
- <modules>
|
|
|
- <module>core-domain</module>
|
|
|
- <module>core-api</module>
|
|
|
- <module>core-main</module>
|
|
|
- </modules>
|
|
|
-
|
|
|
-
|
|
|
- <packaging>pom</packaging>
|
|
|
- <name>ExamCloud-service-core</name>
|
|
|
- <parent>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>1.5.2.RELEASE</version>
|
|
|
- </parent>
|
|
|
-
|
|
|
-
|
|
|
- <properties>
|
|
|
- <!-- non-dependencies -->
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
- <java.version>1.8</java.version>
|
|
|
- <mysql.version>5.1.21</mysql.version>
|
|
|
- <!-- maven plugins -->
|
|
|
- <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
|
|
- <maven-compiler-plugin.version>3.6.1</maven-compiler-plugin.version>
|
|
|
- <spring.boot.version>1.4.3.RELEASE</spring.boot.version>
|
|
|
- <project.version>0.1.0</project.version>
|
|
|
- </properties>
|
|
|
-
|
|
|
- <dependencyManagement>
|
|
|
-
|
|
|
- <dependencies>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
- <version>${mysql.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
- <version>Camden.SR3</version>
|
|
|
- <type>pom</type>
|
|
|
- <scope>import</scope>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- </dependencies>
|
|
|
- </dependencyManagement>
|
|
|
-
|
|
|
- <build>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-surefire-plugin</artifactId>
|
|
|
- </plugin>
|
|
|
-
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- </plugin>
|
|
|
-
|
|
|
- </plugins>
|
|
|
-
|
|
|
- <pluginManagement>
|
|
|
- <plugins>
|
|
|
-
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-surefire-plugin</artifactId>
|
|
|
- <version>${maven-surefire-plugin.version}</version>
|
|
|
- <configuration>
|
|
|
- <testFailureIgnore>true</testFailureIgnore>
|
|
|
- <skipTests>true</skipTests>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
-
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <version>${maven-compiler-plugin.version}</version>
|
|
|
- <configuration>
|
|
|
- <source>1.8</source>
|
|
|
- <target>1.8</target>
|
|
|
- <compilerArgument>-proc:none</compilerArgument>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
-
|
|
|
- </plugins>
|
|
|
- </pluginManagement>
|
|
|
- </build>
|
|
|
-
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>
|
|
|
+ <parent>
|
|
|
+ <groupId>cn.com.qmth.examcloud.common</groupId>
|
|
|
+ <artifactId>ExamCloud-common</artifactId>
|
|
|
+ <version>0.1.0</version>
|
|
|
+ </parent>
|
|
|
+ <groupId>cn.com.qmth.examcloud.service</groupId>
|
|
|
+ <artifactId>core</artifactId>
|
|
|
+ <name>ExamCloud-service-core</name>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+
|
|
|
+ <modules>
|
|
|
+ <module>core-domain</module>
|
|
|
+ <module>core-api</module>
|
|
|
+ <module>core-main</module>
|
|
|
+ </modules>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ </plugins>
|
|
|
+
|
|
|
+ <pluginManagement>
|
|
|
+ <plugins>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <version>${maven-surefire-plugin.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <testFailureIgnore>true</testFailureIgnore>
|
|
|
+ <skipTests>true</skipTests>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>${maven-compiler-plugin.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <source>1.8</source>
|
|
|
+ <target>1.8</target>
|
|
|
+ <compilerArgument>-proc:none</compilerArgument>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ </plugins>
|
|
|
+ </pluginManagement>
|
|
|
+ </build>
|
|
|
+
|
|
|
</project>
|