blob: aae88a35055a154a46b8833f81e136024a55c94d [file] [log] [blame]
Ben Gruver181c04c2012-09-16 00:03:44 -07001/*
2 * Copyright 2012, Google Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met:
8 *
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google Inc. nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
Ben Gruver5b411f32014-01-17 02:04:07 -080031
Ben Gruver900ad6e2015-03-01 19:43:01 -080032buildscript {
33 repositories {
34 mavenCentral()
35 }
36 dependencies {
37 classpath depends.proguard_gradle
38 }
Ben Gruverc9afead2012-09-15 22:56:10 -070039}
40
Ben Gruver1026c6c2012-09-14 23:57:53 -070041dependencies {
42 compile project(':util')
Ben Gruver8b1508e2012-10-21 23:17:56 -070043 compile project(':dexlib2')
Ben Gruver46cefa32013-03-03 17:58:02 -080044 compile depends.guava
Ben Gruver5a5eafb2016-04-10 22:08:11 -070045 compile depends.jcommander
Ben Gruver7d1263a2012-09-15 16:54:20 -070046
Ben Gruverd87770e2013-04-08 00:00:17 -070047 testCompile depends.junit
Ben Gruverd33fd672014-07-19 20:23:32 -070048 testCompile project(':smali')
Ben Gruverc9afead2012-09-15 22:56:10 -070049}
Ben Gruver5cf9fe72012-09-15 19:16:16 -070050
Ben Gruver3a96d5d2012-10-29 21:42:29 -070051processResources.inputs.property('version', version)
52processResources.expand('version': version)
Ben Gruver5cf9fe72012-09-15 19:16:16 -070053
Ben Gruver5b411f32014-01-17 02:04:07 -080054// Build a separate jar that contains all dependencies
55task fatJar(type: Jar) {
56 from sourceSets.main.output
Ben Gruver3a96d5d2012-10-29 21:42:29 -070057 from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
58
Ben Gruver6429b3d2016-02-14 18:45:17 -080059 classifier = 'fat'
60
Ben Gruver3a96d5d2012-10-29 21:42:29 -070061 manifest {
Ben Gruver5a5eafb2016-04-10 22:08:11 -070062 attributes('Main-Class': 'org.jf.baksmali.Main')
Ben Gruverc9afead2012-09-15 22:56:10 -070063 }
Ben Gruver50ef7ed2013-02-24 14:33:37 -080064
65 doLast {
Ben Gruverf0c481a2015-03-01 22:00:30 -080066 if (!System.getProperty('os.name').toLowerCase().contains('windows')) {
Ben Gruver318954d2013-11-10 22:19:48 -080067 ant.symlink(link: file("${destinationDir}/baksmali.jar"), resource: archivePath, overwrite: true)
68 }
Ben Gruver50ef7ed2013-02-24 14:33:37 -080069 }
Ben Gruverc9afead2012-09-15 22:56:10 -070070}
Ben Gruver5b411f32014-01-17 02:04:07 -080071tasks.getByPath('build').dependsOn(fatJar)
Ben Gruverc9afead2012-09-15 22:56:10 -070072
Ben Gruver5b411f32014-01-17 02:04:07 -080073uploadArchives {
74 repositories.mavenDeployer {
75 pom.project {
76 description 'baksmali is a disassembler for dalvik bytecode'
77 scm {
78 url 'https://github.com/JesusFreke/smali/tree/master/baksmali'
79 }
80 }
81 }
82}
83
Ben Gruver900ad6e2015-03-01 19:43:01 -080084task proguard(type: proguard.gradle.ProGuardTask, dependsOn: fatJar) {
Ben Gruver5b411f32014-01-17 02:04:07 -080085 def outFile = fatJar.destinationDir.getPath() + '/' + fatJar.baseName + '-' + fatJar.version + '-small' + '.' + fatJar.extension
Ben Gruver3a96d5d2012-10-29 21:42:29 -070086
Ben Gruver900ad6e2015-03-01 19:43:01 -080087 injars fatJar.archivePath
88 outjars outFile
89
90 libraryjars "${System.properties['java.home']}/lib/rt.jar"
91
92 dontobfuscate
93 dontoptimize
94
Ben Gruverc2231752016-10-02 16:04:29 -070095 keep 'public class org.jf.baksmali.Main { public static void main(java.lang.String[]); }'
Ben Gruver5d77b132016-10-03 20:01:39 -070096 keep 'public class org.jf.util.jcommander.ColonParameterSplitter'
Ben Gruver686d6282016-10-04 00:10:46 -070097 keep 'class com.beust.jcommander.** { *; }'
Ben Gruver900ad6e2015-03-01 19:43:01 -080098 keepclassmembers 'enum * { public static **[] values(); public static ** valueOf(java.lang.String); }'
99
100 dontwarn 'com.google.common.**'
101 dontnote 'com.google.common.**'
Ben Gruverc9afead2012-09-15 22:56:10 -0700102}
103
Ben Gruver8b549092012-10-29 21:48:02 -0700104tasks.getByPath(':release').dependsOn(proguard)
Ben Gruver5a5eafb2016-04-10 22:08:11 -0700105
106task fastbuild(dependsOn: build) {
107}
108
109task fb(dependsOn: fastbuild) {
110}
111
112tasks.getByPath('javadoc').onlyIf({
113 !gradle.taskGraph.hasTask(fastbuild)
114})
115
116tasks.getByPath('test').onlyIf({
117 !gradle.taskGraph.hasTask(fastbuild)
118})