Commit 96c33285 authored by shenjunlin's avatar shenjunlin

fix

parent bde49f53
......@@ -11,6 +11,7 @@
*.jar
*.war
*.ear
/target/*
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
......
......@@ -46,22 +46,48 @@
<!---->
</dependencies>
<distributionManagement>
<repository>
<id>duiba-releases</id>
<name>Releases Repository</name>
<url>http://nexus.dui88.com:8081/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>duiba-snapshots</id>
<name>Snapshots Repository</name>
<url>http://nexus.dui88.com:8081/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<finalName>dingHelper</finalName>
<testResources>
<testResource>
<directory>src/main/resources</directory>
</testResource>
</testResources>
<resources>
<resource>
<directory>src/main/java</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<configuration>
<includes>
<include>**/*Tests.java</include>
</includes>
<show>private</show>
<nohelp>true</nohelp>
</configuration>
</plugin>
</plugins>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment