|
@@ -1,124 +1,124 @@
|
|
|
-<?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</groupId>
|
|
|
- <artifactId>examcloud-parent</artifactId>
|
|
|
- <version>2.0-SNAPSHOT</version>
|
|
|
- <packaging>pom</packaging>
|
|
|
-
|
|
|
- <properties>
|
|
|
- <!-- 云平台版本 -->
|
|
|
- <examcloud.version>2.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>
|
|
|
- <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
|
|
- <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
|
|
|
- <spring-boot.version>1.5.15.RELEASE</spring-boot.version>
|
|
|
- <spring-cloud.version>Edgware.SR3</spring-cloud.version>
|
|
|
- <junit.version>4.12</junit.version>
|
|
|
- <redis.clients.version>2.9.0</redis.clients.version>
|
|
|
- <commons-lang3.version>3.5</commons-lang3.version>
|
|
|
- <gson.version>2.8.0</gson.version>
|
|
|
- <fastjson.version>1.2.24</fastjson.version>
|
|
|
- <kryo.version>4.0.0</kryo.version>
|
|
|
- <poi.version>3.17</poi.version>
|
|
|
- <reflectasm.version>1.11.3</reflectasm.version>
|
|
|
- <spring.data.redis.version>1.8.4.RELEASE</spring.data.redis.version>
|
|
|
- <slf4j.version>1.7.25</slf4j.version>
|
|
|
- <spring.version>4.3.9.RELEASE</spring.version>
|
|
|
- </properties>
|
|
|
-
|
|
|
- <dependencyManagement>
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-dependencies</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- <type>pom</type>
|
|
|
- <scope>import</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
- <version>${spring-cloud.version}</version>
|
|
|
- <type>pom</type>
|
|
|
- <scope>import</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.google.guava</groupId>
|
|
|
- <artifactId>guava</artifactId>
|
|
|
- <version>23.0</version>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
- </dependencyManagement>
|
|
|
-
|
|
|
- <build>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- </plugin>
|
|
|
- <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>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-source-plugin</artifactId>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <id>attach-sources</id>
|
|
|
- <phase>verify</phase>
|
|
|
- <goals>
|
|
|
- <goal>jar-no-fork</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
-
|
|
|
- <repositories>
|
|
|
- <repository>
|
|
|
- <id>nexus</id>
|
|
|
- <name>Nexus</name>
|
|
|
- <url>http://nexus-host:8081/repository/maven-public/</url>
|
|
|
- </repository>
|
|
|
- </repositories>
|
|
|
-
|
|
|
- <pluginRepositories>
|
|
|
- <pluginRepository>
|
|
|
- <id>nexus</id>
|
|
|
- <name>Nexus</name>
|
|
|
- <url>http://nexus-host:8081/repository/maven-public/</url>
|
|
|
- </pluginRepository>
|
|
|
- </pluginRepositories>
|
|
|
-
|
|
|
- <distributionManagement>
|
|
|
- <repository>
|
|
|
- <id>releases</id>
|
|
|
- <url>http://nexus-host:8081/repository/maven-releases/</url>
|
|
|
- </repository>
|
|
|
- <snapshotRepository>
|
|
|
- <id>snapshots</id>
|
|
|
- <url>http://nexus-host:8081/repository/maven-snapshots/</url>
|
|
|
- </snapshotRepository>
|
|
|
- </distributionManagement>
|
|
|
-
|
|
|
-</project>
|
|
|
+<?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</groupId>
|
|
|
+ <artifactId>examcloud-parent</artifactId>
|
|
|
+ <version>master-SNAPSHOT</version>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <!-- 云平台版本 -->
|
|
|
+ <examcloud.version>master-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>
|
|
|
+ <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
|
|
+ <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
|
|
|
+ <spring-boot.version>1.5.15.RELEASE</spring-boot.version>
|
|
|
+ <spring-cloud.version>Edgware.SR3</spring-cloud.version>
|
|
|
+ <junit.version>4.12</junit.version>
|
|
|
+ <redis.clients.version>2.9.0</redis.clients.version>
|
|
|
+ <commons-lang3.version>3.5</commons-lang3.version>
|
|
|
+ <gson.version>2.8.0</gson.version>
|
|
|
+ <fastjson.version>1.2.24</fastjson.version>
|
|
|
+ <kryo.version>4.0.0</kryo.version>
|
|
|
+ <poi.version>3.17</poi.version>
|
|
|
+ <reflectasm.version>1.11.3</reflectasm.version>
|
|
|
+ <spring.data.redis.version>1.8.4.RELEASE</spring.data.redis.version>
|
|
|
+ <slf4j.version>1.7.25</slf4j.version>
|
|
|
+ <spring.version>4.3.9.RELEASE</spring.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
+ <version>${spring-cloud.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
+ <version>23.0</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ </plugin>
|
|
|
+ <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>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-source-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>attach-sources</id>
|
|
|
+ <phase>verify</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>jar-no-fork</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>nexus</id>
|
|
|
+ <name>Nexus</name>
|
|
|
+ <url>http://nexus-host:8081/repository/maven-public/</url>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+
|
|
|
+ <pluginRepositories>
|
|
|
+ <pluginRepository>
|
|
|
+ <id>nexus</id>
|
|
|
+ <name>Nexus</name>
|
|
|
+ <url>http://nexus-host:8081/repository/maven-public/</url>
|
|
|
+ </pluginRepository>
|
|
|
+ </pluginRepositories>
|
|
|
+
|
|
|
+ <distributionManagement>
|
|
|
+ <repository>
|
|
|
+ <id>releases</id>
|
|
|
+ <url>http://nexus-host:8081/repository/maven-releases/</url>
|
|
|
+ </repository>
|
|
|
+ <snapshotRepository>
|
|
|
+ <id>snapshots</id>
|
|
|
+ <url>http://nexus-host:8081/repository/maven-snapshots/</url>
|
|
|
+ </snapshotRepository>
|
|
|
+ </distributionManagement>
|
|
|
+
|
|
|
+</project>
|