Skip to content

Commit

Permalink
修改打包插件,source插件
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangwenping committed May 12, 2017
1 parent f8ad48e commit 6ffa14a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.snowcattle.game</groupId>
<artifactId>netty-game-server</artifactId>
<version>1.1.3-SNAPSHOT</version>
<version>1.1.4-SNAPSHOT</version>

<repositories>
<repository>
Expand Down Expand Up @@ -263,8 +263,15 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<!-- 定义在prepare-package时将classes/com打jar -->
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classesDirectory>${project.basedir}/src/main/java/</classesDirectory>
<classesDirectory>${project.basedir}/target/classes</classesDirectory>
<includes>
<include>com/**</include>
</includes>
</configuration>
</plugin>

Expand Down

0 comments on commit 6ffa14a

Please # to comment.