There was an error while loading. Please reload this page.
1 parent f8ad48e commit 6ffa14aCopy full SHA for 6ffa14a
1 file changed
pom.xml
@@ -6,7 +6,7 @@
6
7
<groupId>com.snowcattle.game</groupId>
8
<artifactId>netty-game-server</artifactId>
9
- <version>1.1.3-SNAPSHOT</version>
+ <version>1.1.4-SNAPSHOT</version>
10
11
<repositories>
12
<repository>
@@ -263,8 +263,15 @@
263
<groupId>org.apache.maven.plugins</groupId>
264
<artifactId>maven-jar-plugin</artifactId>
265
<version>2.4</version>
266
+ <!-- 定义在prepare-package时将classes/com打jar -->
267
+ <goals>
268
+ <goal>jar</goal>
269
+ </goals>
270
<configuration>
- <classesDirectory>${project.basedir}/src/main/java/</classesDirectory>
271
+ <classesDirectory>${project.basedir}/target/classes</classesDirectory>
272
+ <includes>
273
+ <include>com/**</include>
274
+ </includes>
275
</configuration>
276
</plugin>
277
0 commit comments