2021-04-13 20:13:15 +08:00
|
|
|
import java.nio.charset.StandardCharsets
|
|
|
|
|
2013-01-16 16:06:32 -06:00
|
|
|
/**
|
2014-10-23 18:14:48 -05:00
|
|
|
* Copyright 2014 Ryszard Wiśniewski <brut.alll@gmail.com>
|
2013-01-16 16:06:32 -06:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
2021-08-24 21:31:41 +08:00
|
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
2013-01-16 16:06:32 -06:00
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2015-10-14 07:42:30 -05:00
|
|
|
buildscript {
|
2021-04-24 10:32:50 +08:00
|
|
|
ext {
|
|
|
|
depends = [
|
2023-04-28 19:30:06 -04:00
|
|
|
baksmali : 'com.android.tools.smali:smali-baksmali:3.0.3',
|
2021-12-18 14:31:04 -08:00
|
|
|
commons_cli : 'commons-cli:commons-cli:1.5.0',
|
2023-06-12 05:52:15 -04:00
|
|
|
commons_io : 'commons-io:commons-io:2.13.0',
|
2021-04-24 10:32:50 +08:00
|
|
|
commons_lang : 'org.apache.commons:commons-lang3:3.12.0',
|
2022-11-18 07:19:53 -05:00
|
|
|
commons_text : 'org.apache.commons:commons-text:1.10.0',
|
2023-06-12 06:18:45 -04:00
|
|
|
guava : 'com.google.guava:guava:32.0.1-jre',
|
2021-04-24 10:32:50 +08:00
|
|
|
junit : 'junit:junit:4.13.2',
|
2023-03-20 05:36:14 -04:00
|
|
|
proguard_gradle: 'com.guardsquare:proguard-gradle:7.3.2',
|
2022-11-18 07:19:53 -05:00
|
|
|
snakeyaml : 'org.yaml:snakeyaml:1.32:android',
|
2023-04-28 19:30:06 -04:00
|
|
|
smali : 'com.android.tools.smali:smali:3.0.3',
|
2021-04-24 10:32:50 +08:00
|
|
|
xmlpull : 'xpp3:xpp3:1.1.4c',
|
|
|
|
xmlunit : 'xmlunit:xmlunit:1.6',
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2015-10-14 07:42:30 -05:00
|
|
|
repositories {
|
2021-08-24 21:28:40 +08:00
|
|
|
gradlePluginPortal()
|
2023-04-28 19:30:06 -04:00
|
|
|
google()
|
2015-10-14 07:42:30 -05:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-03-07 16:13:21 +05:30
|
|
|
classpath "gradle.plugin.com.github.johnrengelman:shadow:8.0.0"
|
2021-08-24 21:28:40 +08:00
|
|
|
classpath "gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1"
|
2015-10-14 07:42:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-23 08:05:14 -05:00
|
|
|
apply from: 'gradle/functions.gradle'
|
2013-06-20 08:27:13 -05:00
|
|
|
|
2023-07-22 13:38:00 -04:00
|
|
|
version = '2.8.2'
|
|
|
|
def suffix = 'SNAPSHOT'
|
2014-02-04 09:54:00 -06:00
|
|
|
|
2017-05-08 08:33:12 -04:00
|
|
|
defaultTasks 'build', 'shadowJar', 'proguard'
|
2015-10-14 07:42:30 -05:00
|
|
|
|
2014-11-01 21:44:49 -05:00
|
|
|
allprojects {
|
|
|
|
apply plugin: 'java'
|
2021-08-24 21:28:40 +08:00
|
|
|
apply plugin: 'com.github.hierynomus.license'
|
|
|
|
|
2018-09-06 06:42:52 -04:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
2017-07-05 12:03:40 -04:00
|
|
|
|
|
|
|
license {
|
|
|
|
header rootProject.file("brut.j.common/src/templates/apache2.0-header.txt")
|
2019-07-13 12:23:48 -04:00
|
|
|
exclude "**/android/content/res/*.java"
|
|
|
|
exclude "**/android/util/*.java"
|
2017-07-05 12:03:40 -04:00
|
|
|
include "**/*.java"
|
2019-10-15 21:24:03 -07:00
|
|
|
mapping {
|
2020-08-10 14:45:00 +02:00
|
|
|
java = 'SLASHSTAR_STYLE'
|
2019-10-15 21:24:03 -07:00
|
|
|
}
|
2021-09-03 07:58:51 -04:00
|
|
|
ext {
|
|
|
|
year = '2010'
|
|
|
|
brut = 'Ryszard Wiśniewski'
|
|
|
|
brutEmail = 'brut.alll@gmail.com'
|
|
|
|
ibot = 'Connor Tumbleson'
|
|
|
|
ibotEmail = 'connor.tumbleson@gmail.com'
|
|
|
|
}
|
2017-07-05 12:03:40 -04:00
|
|
|
strictCheck true
|
2017-07-09 10:19:13 -04:00
|
|
|
}
|
2017-07-09 10:55:57 -04:00
|
|
|
|
|
|
|
// license plugin automatically fires these tasks, disable them and run them during releases
|
2021-04-24 10:32:50 +08:00
|
|
|
gradle.startParameter.excludedTaskNames += [
|
|
|
|
"licenseMain",
|
|
|
|
"licenseTest"
|
|
|
|
]
|
2022-11-24 06:15:41 -05:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2023-04-28 19:30:06 -04:00
|
|
|
google()
|
2022-11-24 06:15:41 -05:00
|
|
|
}
|
2021-04-24 10:32:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
|
|
options.encoding = StandardCharsets.UTF_8.toString()
|
|
|
|
options.compilerArgs += ["-Xlint:-options"]
|
2014-11-01 21:44:49 -05:00
|
|
|
}
|
2014-02-04 09:54:00 -06:00
|
|
|
|
2021-03-08 20:10:11 -05:00
|
|
|
def mavenVersion = 'unspecified'
|
2014-10-23 08:05:14 -05:00
|
|
|
if (!('release' in gradle.startParameter.taskNames)) {
|
2021-03-04 07:21:22 -05:00
|
|
|
def hash = getCheckedOutGitCommitHash()
|
2014-02-04 09:54:00 -06:00
|
|
|
|
2014-10-23 08:05:14 -05:00
|
|
|
if (hash == null) {
|
|
|
|
project.ext.set("hash", "dirty")
|
2021-03-07 15:04:16 -05:00
|
|
|
project.ext.set("apktool_version", version + "-dirty")
|
2021-03-04 07:21:22 -05:00
|
|
|
println "Building SNAPSHOT (no .git folder found)"
|
2014-10-23 08:05:14 -05:00
|
|
|
} else {
|
2021-03-04 07:21:22 -05:00
|
|
|
project.ext.set("hash", hash)
|
2021-03-07 15:04:16 -05:00
|
|
|
project.ext.set("apktool_version", version + "-" + hash + "-SNAPSHOT")
|
2021-03-08 20:10:11 -05:00
|
|
|
mavenVersion = version + "-SNAPSHOT"
|
2021-04-24 10:53:30 +08:00
|
|
|
println "Building SNAPSHOT (${getCheckedOutBranch()}): $hash"
|
2014-02-04 09:54:00 -06:00
|
|
|
}
|
2014-10-23 08:05:14 -05:00
|
|
|
} else {
|
|
|
|
project.ext.set("hash", "")
|
2021-03-07 15:04:16 -05:00
|
|
|
if (suffix.length() > 0) {
|
|
|
|
project.ext.set("apktool_version", version + "-" + suffix)
|
2015-04-19 11:02:02 -05:00
|
|
|
} else {
|
2021-03-07 15:04:16 -05:00
|
|
|
project.ext.set("apktool_version", version)
|
2015-04-19 11:02:02 -05:00
|
|
|
}
|
2021-03-08 20:10:11 -05:00
|
|
|
mavenVersion = version
|
2021-04-24 10:53:30 +08:00
|
|
|
println "Building RELEASE (${getCheckedOutBranch()}): $project.ext.apktool_version"
|
2012-09-19 20:19:12 -05:00
|
|
|
}
|
|
|
|
|
2013-07-08 14:03:13 -05:00
|
|
|
build.doFirst {
|
|
|
|
def javaVersion = System.getProperty("java.version")
|
2014-10-23 08:05:14 -05:00
|
|
|
|
2018-09-06 06:42:52 -04:00
|
|
|
// fail the build if java (1.5/1.6/1.7)
|
|
|
|
if (javaVersion.startsWith("1.5") || javaVersion.startsWith("1.6") || javaVersion.startsWith("1.7")) {
|
2014-10-23 08:05:14 -05:00
|
|
|
throw new GradleException("You can fix this problem!\n" +
|
|
|
|
"We found a " + javaVersion + " JDK\n" +
|
2018-09-06 06:42:52 -04:00
|
|
|
"Please update JAVA_HOME to use at least a 1.8 JDK\n" +
|
2014-10-23 08:05:14 -05:00
|
|
|
"Currently it is set to: " + System.getProperty("java.home")
|
2021-03-04 07:21:22 -05:00
|
|
|
)
|
2014-10-23 08:05:14 -05:00
|
|
|
}
|
2015-10-14 07:42:30 -05:00
|
|
|
}
|
|
|
|
|
2014-02-04 09:54:00 -06:00
|
|
|
// used for official releases only. Please don't use
|
2012-12-19 18:19:20 -06:00
|
|
|
task release {
|
|
|
|
}
|
|
|
|
|
2021-03-07 15:04:16 -05:00
|
|
|
// used for publishing snapshot builds to maven.
|
|
|
|
task snapshot {
|
|
|
|
}
|
|
|
|
|
2012-09-19 20:19:12 -05:00
|
|
|
subprojects {
|
2014-10-23 08:05:14 -05:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
test {
|
2023-07-20 05:01:21 -04:00
|
|
|
// https://github.com/iBotPeaches/Apktool/issues/3174
|
|
|
|
systemProperty 'jdk.nio.zipfs.allowDotZipEntry', 'true'
|
|
|
|
systemProperty 'jdk.util.zip.disableZip64ExtraFieldValidation', 'true'
|
|
|
|
|
2014-10-23 08:05:14 -05:00
|
|
|
testLogging {
|
|
|
|
exceptionFormat = 'full'
|
|
|
|
}
|
2014-02-09 18:49:59 -06:00
|
|
|
}
|
2021-03-07 15:04:16 -05:00
|
|
|
|
2021-11-08 06:32:41 -05:00
|
|
|
def mavenProjects = ['apktool-lib', 'apktool-cli', 'brut.j.common', 'brut.j.util', 'brut.j.dir']
|
2021-03-10 07:10:16 -05:00
|
|
|
|
|
|
|
if (project.name in mavenProjects) {
|
2021-03-07 15:04:16 -05:00
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
apply plugin: 'signing'
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
2021-03-08 20:10:11 -05:00
|
|
|
maven(MavenPublication) {
|
2021-03-10 07:10:16 -05:00
|
|
|
from project.components.java
|
2021-03-08 20:10:11 -05:00
|
|
|
|
|
|
|
groupId = 'org.apktool'
|
2021-03-10 07:10:16 -05:00
|
|
|
artifactId = project.name
|
2021-03-08 20:10:11 -05:00
|
|
|
version = mavenVersion
|
|
|
|
|
2021-03-07 15:04:16 -05:00
|
|
|
pom {
|
|
|
|
name = 'Apktool'
|
|
|
|
description = 'A tool for reverse engineering Android apk files.'
|
|
|
|
url = 'https://apktool.org'
|
|
|
|
|
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name = 'The Apache License 2.0'
|
|
|
|
url = 'https://opensource.org/licenses/Apache-2.0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
developers {
|
|
|
|
developer {
|
|
|
|
id = 'iBotPeaches'
|
|
|
|
name = 'Connor Tumbleson'
|
|
|
|
email = 'connor.tumbleson@gmail.com'
|
|
|
|
}
|
|
|
|
developer {
|
|
|
|
id = 'brutall'
|
|
|
|
name = 'Ryszard Wiśniewski'
|
|
|
|
email = 'brut.alll@gmail.com'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
scm {
|
|
|
|
connection = 'scm:git:git://github.com/iBotPeaches/Apktool.git'
|
|
|
|
developerConnection = 'scm:git:git@github.com:iBotPeaches/Apktool.git'
|
2021-03-08 20:10:11 -05:00
|
|
|
url = 'https://github.com/iBotPeaches/Apktool'
|
2021-03-07 15:04:16 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rootProject.hasProperty('ossrhUsername') && rootProject.hasProperty('ossrhPassword')) {
|
|
|
|
repositories {
|
|
|
|
maven {
|
2021-03-08 20:10:11 -05:00
|
|
|
if (mavenVersion.endsWith('-SNAPSHOT')) {
|
|
|
|
url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
|
|
|
|
} else {
|
|
|
|
url = 'https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/'
|
|
|
|
}
|
2021-03-07 15:04:16 -05:00
|
|
|
credentials {
|
|
|
|
username ossrhUsername
|
|
|
|
password ossrhPassword
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
signing {
|
|
|
|
required { gradle.taskGraph.hasTask('publish') }
|
2021-03-08 20:10:11 -05:00
|
|
|
sign(publishing.publications["maven"])
|
2021-03-07 15:04:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
withJavadocJar()
|
|
|
|
withSourcesJar()
|
|
|
|
}
|
|
|
|
|
2021-04-13 20:13:15 +08:00
|
|
|
tasks.getByPath(':release').dependsOn(publish)
|
|
|
|
tasks.getByPath(':snapshot').dependsOn(publish)
|
2021-03-07 15:04:16 -05:00
|
|
|
}
|
2013-01-29 21:01:31 -06:00
|
|
|
}
|