diff --git a/.gitignore b/.gitignore index 3ff8ead9..859ac11b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ /.gradle -/baksmali/target +/baksmali/build /dexlib/build /smali/target /util/build diff --git a/baksmali/.gitignore b/baksmali/.gitignore deleted file mode 100644 index ea8c4bf7..00000000 --- a/baksmali/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target diff --git a/baksmali/build.gradle b/baksmali/build.gradle new file mode 100644 index 00000000..3b2768ed --- /dev/null +++ b/baksmali/build.gradle @@ -0,0 +1,6 @@ +dependencies { + compile project(':util') + compile project(':dexlib') + compile 'commons-cli:commons-cli:1.2' + compile 'com.google.code.findbugs:jsr305:1.3.9' +} \ No newline at end of file diff --git a/baksmali/pom.xml b/baksmali/pom.xml deleted file mode 100644 index 510fbf43..00000000 --- a/baksmali/pom.xml +++ /dev/null @@ -1,112 +0,0 @@ - - - 4.0.0 - org.jf - baksmali - ${aversion} - - org.jf - smali-pom - 1.0-SNAPSHOT - - - - - maven-assembly-plugin - - - jar-with-dependencies - - - - org.jf.baksmali.main - - - - - - package - - single - - - - - - com.github.wvengen - proguard-maven-plugin - 2.0.5 - - - package - - proguard - - - - - 4.8 - false - false - ${project.build.finalName}-jar-with-dependencies.jar - ${project.build.finalName}-jar-with-dependencies-small.jar - ${project.build.directory} - - - - - - - - - - - - ${java.home}/lib/rt.jar - - - - - net.sf.proguard - proguard-base - 4.8 - - - - - - - src/main/resources/properties - true - - - - - - org.jf - dexlib - ${version} - - - org.jf - util - ${version} - - - commons-cli - commons-cli - 1.2 - - - com.google.code.findbugs - jsr305 - 1.3.9 - - - \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index bbf479bc..695e3e6c 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1 @@ -include 'util', 'dexlib' \ No newline at end of file +include 'util', 'dexlib', 'baksmali' \ No newline at end of file