Commit 96c33285 authored by shenjunlin's avatar shenjunlin

fix

parent bde49f53
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
*.jar *.jar
*.war *.war
*.ear *.ear
/target/*
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid* hs_err_pid*
......
...@@ -46,22 +46,48 @@ ...@@ -46,22 +46,48 @@
<!----> <!---->
</dependencies> </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> <build>
<finalName>dingHelper</finalName> <testResources>
<testResource>
<directory>src/main/resources</directory>
</testResource>
</testResources>
<resources>
<resource>
<directory>src/main/java</directory>
</resource>
</resources>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration> <configuration>
<source>1.8</source> <source>1.8</source>
<target>1.8</target> <target>1.8</target>
<encoding>UTF-8</encoding>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-surefire-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<configuration> <configuration>
<includes> <show>private</show>
<include>**/*Tests.java</include> <nohelp>true</nohelp>
</includes>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </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