1
0
mirror of https://e.coding.net/circlecloud/RocketJump.git synced 2025-11-24 23:56:06 +00:00

添加混淆 修复命令处理...

Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
502647092
2016-02-23 13:30:37 +08:00
parent 04d2c516b6
commit 5cdbe152d4
5 changed files with 106 additions and 43 deletions

28
pom.xml
View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>cn.citycraft</groupId>
<artifactId>RocketJump</artifactId>
<version>1.1</version>
<version>1.2</version>
<name>RocketJump</name>
<build>
<finalName>${project.name}</finalName>
@@ -50,11 +50,32 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>proguard</goal>
</goals>
</execution>
</executions>
<configuration>
<options>
<option>-repackageclasses ${project.groupId}.${project.artifactId}</option>
<option>-keep class ${project.groupId}.${project.artifactId}.${project.artifactId}</option>
</options>
<libs>
<lib>${java.home}/lib/rt.jar</lib>
</libs>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<jenkins.url>http://ci.citycraft.cn:8080</jenkins.url>
<update.description></update.description>
<jenkins.url>http://hs.citycraft.cn:8080</jenkins.url>
<update.description>&amp;c修复命令部分代码...</update.description>
<update.changes></update.changes>
<env.GIT_COMMIT>DEBUG</env.GIT_COMMIT>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -83,4 +104,5 @@
<version>1.0</version>
</dependency>
</dependencies>
<description>火箭跳跃 特效Duang...</description>
</project>