0
0
Fork 0
mirror of https://github.com/Screetsec/TheFatRat.git synced 2023-12-14 02:02:58 +01:00
TheFatRat/tools/proguard5.3.2/buildscripts
2017-03-14 23:22:43 +07:00
..
maven Update v1.9.0 2017-03-14 23:22:43 +07:00
build.gradle Update v1.9.0 2017-03-14 23:22:43 +07:00
build.properties Update v1.9.0 2017-03-14 23:22:43 +07:00
build.sh Update v1.9.0 2017-03-14 23:22:43 +07:00
build.xml Update v1.9.0 2017-03-14 23:22:43 +07:00
makefile Update v1.9.0 2017-03-14 23:22:43 +07:00
README Update v1.9.0 2017-03-14 23:22:43 +07:00

ProGuard, Java class file shrinker, optimizer, obfuscator, and preverifier
==========================================================================

This directory contains a number of alternative ways to build ProGuard:

- build.sh      : a shell script for GNU/Linux
- makefile      : a makefile for GNU/Linux
- build.gradle  : a Gradle build file for all platforms
- build.xml     : an Ant build file for all platforms
- maven/pom.xml : a Maven POM for building the Maven artifacts

- As a final alternative, you can also easily compile the code from the
  command line:

    mkdir classes
    javac -sourcepath src -d classes src/proguard/ProGuard.java
    javac -sourcepath src -d classes src/proguard/gui/ProGuardGUI.java
    javac -sourcepath src -d classes src/proguard/retrace/ReTrace.java

  For the ProGuard Gradle task:

    javac -sourcepath src -d classes -classpath ..... \
        src/proguard/gradle/ProGuardTask.java

  For the ProGuard Ant task:

    javac -sourcepath src -d classes -classpath lib/ant.jar \
        src/proguard/ant/ProGuardTask.java

  For the Java Micro Edition Wireless Tool Kit (JME WTK) obfuscator plug-in:

    javac -sourcepath src -d classes -classpath wtklib/kenv.zip \
        src/proguard/wtk/ProGuardObfuscator.java

Depending on the scripts, you may still need to install Gradle, Ant, Maven,
and the JME WTK yourself.

Enjoy!

http://proguard.sourceforge.net/

Copyright (c) 2002-2016 Eric Lafortune @ GuardSquare