|
@@ -7,6 +7,7 @@
|
|
|
<parent>
|
|
|
<groupId>com.ywt</groupId>
|
|
|
<artifactId>ywt-parent</artifactId>
|
|
|
+ <relativePath>../ywt-parent/pom.xml</relativePath>
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
</parent>
|
|
|
|
|
@@ -20,6 +21,21 @@
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
</properties>
|
|
|
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>nexus</id>
|
|
|
+ <name>Team Nexus Repository</name>
|
|
|
+ <url>http://nexus.ywtinfo.com/repository/maven-public/</url>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+ <pluginRepositories>
|
|
|
+ <pluginRepository>
|
|
|
+ <id>nexus</id>
|
|
|
+ <name>Team Nexus Repository</name>
|
|
|
+ <url>http://nexus.ywtinfo.com/repository/maven-public/</url>
|
|
|
+ </pluginRepository>
|
|
|
+ </pluginRepositories>
|
|
|
+
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
@@ -147,4 +163,27 @@
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-deploy-plugin</artifactId>
|
|
|
+ <version>3.0.0-M1</version>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+ <distributionManagement>
|
|
|
+ <snapshotRepository>
|
|
|
+ <id>snapshots</id>
|
|
|
+ <name>Nexus Snapshot Repository</name>
|
|
|
+ <url>http://nexus.ywtinfo.com/repository/maven-snapshots/</url>
|
|
|
+ </snapshotRepository>
|
|
|
+ <repository>
|
|
|
+ <id>releases</id>
|
|
|
+ <name>Nexus Release Repository</name>
|
|
|
+ <url>http://nexus.ywtinfo.com/repository/maven-releases/</url>
|
|
|
+ </repository>
|
|
|
+ </distributionManagement>
|
|
|
+
|
|
|
</project>
|