|
@@ -152,6 +152,18 @@
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <version>2.17</version>
|
|
|
+ <configuration>
|
|
|
+ <includes>
|
|
|
+ <include>
|
|
|
+ **/org/hswebframework/**/*Tests.java
|
|
|
+ </include>
|
|
|
+ </includes>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
@@ -221,4 +233,27 @@
|
|
|
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
+
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>hsweb-nexus</id>
|
|
|
+ <name>Nexus Release Repository</name>
|
|
|
+ <url>http://nexus.hsweb.me/content/groups/public/</url>
|
|
|
+ <snapshots>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </snapshots>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+ <distributionManagement>
|
|
|
+ <repository>
|
|
|
+ <id>releases</id>
|
|
|
+ <name>Nexus Release Repository</name>
|
|
|
+ <url>http://nexus.hsweb.me/content/repositories/releases/</url>
|
|
|
+ </repository>
|
|
|
+ <snapshotRepository>
|
|
|
+ <id>snapshots</id>
|
|
|
+ <name>Nexus Snapshot Repository</name>
|
|
|
+ <url>http://nexus.hsweb.me/content/repositories/snapshots/</url>
|
|
|
+ </snapshotRepository>
|
|
|
+ </distributionManagement>
|
|
|
</project>
|