|
@@ -4,17 +4,12 @@
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
<groupId>cn.com.qmth.examcloud</groupId>
|
|
|
<artifactId>examcloud-parent</artifactId>
|
|
|
- <version>0.1.0</version>
|
|
|
+ <version>2.0-SNAPSHOT</version>
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
- <name>examcloud-parent</name>
|
|
|
- <description>云平台顶级工程,所有子工程的父级工程.负责全平台版本管理和依赖管理. by wangwei</description>
|
|
|
-
|
|
|
<properties>
|
|
|
<!-- 云平台版本 -->
|
|
|
- <examcloud.version>0.1.0</examcloud.version>
|
|
|
- <!-- 云平台版本,兼容云平台老版本,待废弃 -->
|
|
|
- <project.version>0.1.0</project.version>
|
|
|
+ <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>
|
|
@@ -82,4 +77,29 @@
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>nexus</id>
|
|
|
+ <name>Nexus Repository</name>
|
|
|
+ <url>http://private-maven-repositories:8081/nexus/content/groups/public</url>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+ <pluginRepositories>
|
|
|
+ <pluginRepository>
|
|
|
+ <id>nexus</id>
|
|
|
+ <name>Nexus Repository</name>
|
|
|
+ <url>http://private-maven-repositories:8081/nexus/content/groups/public</url>
|
|
|
+ </pluginRepository>
|
|
|
+ </pluginRepositories>
|
|
|
+ <distributionManagement>
|
|
|
+ <repository>
|
|
|
+ <id>releases</id>
|
|
|
+ <url>http://private-maven-repositories:8081/nexus/content/repositories/releases/</url>
|
|
|
+ </repository>
|
|
|
+ <snapshotRepository>
|
|
|
+ <id>snapshots</id>
|
|
|
+ <url>http://private-maven-repositories:8081/nexus/content/repositories/snapshots/</url>
|
|
|
+ </snapshotRepository>
|
|
|
+ </distributionManagement>
|
|
|
+
|
|
|
</project>
|