2021-04-13 14:13:15 +02:00
|
|
|
import java.nio.charset.StandardCharsets
|
|
|
|
|
2013-01-16 23:06:32 +01:00
|
|
|
/**
|
2014-10-24 01:14:48 +02:00
|
|
|
* Copyright 2014 Ryszard Wiśniewski <brut.alll@gmail.com>
|
2013-01-16 23:06:32 +01: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 15:31:41 +02:00
|
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
2013-01-16 23:06:32 +01: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 14:42:30 +02:00
|
|
|
buildscript {
|
2021-04-24 04:32:50 +02:00
|
|
|
ext {
|
|
|
|
depends = [
|
2023-04-29 01:30:06 +02:00
|
|
|
baksmali : 'com.android.tools.smali:smali-baksmali:3.0.3',
|
2021-12-18 23:31:04 +01:00
|
|
|
commons_cli : 'commons-cli:commons-cli:1.5.0',
|
2023-06-12 11:52:15 +02:00
|
|
|
commons_io : 'commons-io:commons-io:2.13.0',
|
2021-04-24 04:32:50 +02:00
|
|
|
commons_lang : 'org.apache.commons:commons-lang3:3.12.0',
|
2022-11-18 13:19:53 +01:00
|
|
|
commons_text : 'org.apache.commons:commons-text:1.10.0',
|
2023-06-12 12:18:45 +02:00
|
|
|
guava : 'com.google.guava:guava:32.0.1-jre',
|
2021-04-24 04:32:50 +02:00
|
|
|
junit : 'junit:junit:4.13.2',
|
2023-03-20 10:36:14 +01:00
|
|
|
proguard_gradle: 'com.guardsquare:proguard-gradle:7.3.2',
|
2022-11-18 13:19:53 +01:00
|
|
|
snakeyaml : 'org.yaml:snakeyaml:1.32:android',
|
2023-04-29 01:30:06 +02:00
|
|
|
smali : 'com.android.tools.smali:smali:3.0.3',
|
2021-04-24 04:32:50 +02:00
|
|
|
xmlpull : 'xpp3:xpp3:1.1.4c',
|
|
|
|
xmlunit : 'xmlunit:xmlunit:1.6',
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2015-10-14 14:42:30 +02:00
|
|
|
repositories {
|
2021-08-24 15:28:40 +02:00
|
|
|
gradlePluginPortal()
|
2023-04-29 01:30:06 +02:00
|
|
|
google()
|
2015-10-14 14:42:30 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-03-07 11:43:21 +01:00
|
|
|
classpath "gradle.plugin.com.github.johnrengelman:shadow:8.0.0"
|
2021-08-24 15:28:40 +02:00
|
|
|
classpath "gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1"
|
2015-10-14 14:42:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-23 15:05:14 +02:00
|
|
|
apply from: 'gradle/functions.gradle'
|
2013-06-20 15:27:13 +02:00
|
|
|
|
2023-07-22 19:38:00 +02:00
|
|
|
version = '2.8.2'
|
|
|
|
def suffix = 'SNAPSHOT'
|
2014-02-04 16:54:00 +01:00
|
|
|
|
2017-05-08 14:33:12 +02:00
|
|
|
defaultTasks 'build', 'shadowJar', 'proguard'
|
2015-10-14 14:42:30 +02:00
|
|
|
|
2014-11-02 03:44:49 +01:00
|
|
|
allprojects {
|
|
|
|
apply plugin: 'java'
|
2021-08-24 15:28:40 +02:00
|
|
|
apply plugin: 'com.github.hierynomus.license'
|
|
|
|
|
2018-09-06 12:42:52 +02:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
2017-07-05 18:03:40 +02:00
|
|
|
|
|
|
|
license {
|
|
|
|
header rootProject.file("brut.j.common/src/templates/apache2.0-header.txt")
|
2019-07-13 18:23:48 +02:00
|
|
|
exclude "**/android/content/res/*.java"
|
|
|
|
exclude "**/android/util/*.java"
|
2017-07-05 18:03:40 +02:00
|
|
|
include "**/*.java"
|
2019-10-16 06:24:03 +02:00
|
|
|
mapping {
|
2020-08-10 14:45:00 +02:00
|
|
|
java = 'SLASHSTAR_STYLE'
|
2019-10-16 06:24:03 +02:00
|
|
|
}
|
2021-09-03 13:58:51 +02:00
|
|
|
ext {
|
|
|
|
year = '2010'
|
|
|
|
brut = 'Ryszard Wiśniewski'
|
|
|
|
brutEmail = 'brut.alll@gmail.com'
|
|
|
|
ibot = 'Connor Tumbleson'
|
|
|
|
ibotEmail = 'connor.tumbleson@gmail.com'
|
|
|
|
}
|
2017-07-05 18:03:40 +02:00
|
|
|
strictCheck true
|
2017-07-09 16:19:13 +02:00
|
|
|
}
|
2017-07-09 16:55:57 +02:00
|
|
|
|
|
|
|
// license plugin automatically fires these tasks, disable them and run them during releases
|
2021-04-24 04:32:50 +02:00
|
|
|
gradle.startParameter.excludedTaskNames += [
|
|
|
|
"licenseMain",
|
|
|
|
"licenseTest"
|
|
|
|
]
|
2022-11-24 12:15:41 +01:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2023-04-29 01:30:06 +02:00
|
|
|
google()
|
2022-11-24 12:15:41 +01:00
|
|
|
}
|
2021-04-24 04:32:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
|
|
options.encoding = StandardCharsets.UTF_8.toString()
|
|
|
|
options.compilerArgs += ["-Xlint:-options"]
|
2014-11-02 03:44:49 +01:00
|
|
|
}
|
2014-02-04 16:54:00 +01:00
|
|
|
|
2021-03-09 02:10:11 +01:00
|
|
|
def mavenVersion = 'unspecified'
|
2014-10-23 15:05:14 +02:00
|
|
|
if (!('release' in gradle.startParameter.taskNames)) {
|
2021-03-04 13:21:22 +01:00
|
|
|
def hash = getCheckedOutGitCommitHash()
|
2014-02-04 16:54:00 +01:00
|
|
|
|
2014-10-23 15:05:14 +02:00
|
|
|
if (hash == null) {
|
|
|
|
project.ext.set("hash", "dirty")
|
2021-03-07 21:04:16 +01:00
|
|
|
project.ext.set("apktool_version", version + "-dirty")
|
2021-03-04 13:21:22 +01:00
|
|
|
println "Building SNAPSHOT (no .git folder found)"
|
2014-10-23 15:05:14 +02:00
|
|
|
} else {
|
2021-03-04 13:21:22 +01:00
|
|
|
project.ext.set("hash", hash)
|
2021-03-07 21:04:16 +01:00
|
|
|
project.ext.set("apktool_version", version + "-" + hash + "-SNAPSHOT")
|
2021-03-09 02:10:11 +01:00
|
|
|
mavenVersion = version + "-SNAPSHOT"
|
2021-04-24 04:53:30 +02:00
|
|
|
println "Building SNAPSHOT (${getCheckedOutBranch()}): $hash"
|
2014-02-04 16:54:00 +01:00
|
|
|
}
|
2014-10-23 15:05:14 +02:00
|
|
|
} else {
|
|
|
|
project.ext.set("hash", "")
|
2021-03-07 21:04:16 +01:00
|
|
|
if (suffix.length() > 0) {
|
|
|
|
project.ext.set("apktool_version", version + "-" + suffix)
|
2015-04-19 18:02:02 +02:00
|
|
|
} else {
|
2021-03-07 21:04:16 +01:00
|
|
|
project.ext.set("apktool_version", version)
|
2015-04-19 18:02:02 +02:00
|
|
|
}
|
2021-03-09 02:10:11 +01:00
|
|
|
mavenVersion = version
|
2021-04-24 04:53:30 +02:00
|
|
|
println "Building RELEASE (${getCheckedOutBranch()}): $project.ext.apktool_version"
|
2012-09-20 03:19:12 +02:00
|
|
|
}
|
|
|
|
|
2013-07-08 21:03:13 +02:00
|
|
|
build.doFirst {
|
|
|
|
def javaVersion = System.getProperty("java.version")
|
2014-10-23 15:05:14 +02:00
|
|
|
|
2018-09-06 12:42:52 +02: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 15:05:14 +02:00
|
|
|
throw new GradleException("You can fix this problem!\n" +
|
|
|
|
"We found a " + javaVersion + " JDK\n" +
|
2018-09-06 12:42:52 +02:00
|
|
|
"Please update JAVA_HOME to use at least a 1.8 JDK\n" +
|
2014-10-23 15:05:14 +02:00
|
|
|
"Currently it is set to: " + System.getProperty("java.home")
|
2021-03-04 13:21:22 +01:00
|
|
|
)
|
2014-10-23 15:05:14 +02:00
|
|
|
}
|
2015-10-14 14:42:30 +02:00
|
|
|
}
|
|
|
|
|
2014-02-04 16:54:00 +01:00
|
|
|
// used for official releases only. Please don't use
|
2012-12-20 01:19:20 +01:00
|
|
|
task release {
|
|
|
|
}
|
|
|
|
|
2021-03-07 21:04:16 +01:00
|
|
|
// used for publishing snapshot builds to maven.
|
|
|
|
task snapshot {
|
|
|
|
}
|
|
|
|
|
2012-09-20 03:19:12 +02:00
|
|
|
subprojects {
|
2014-10-23 15:05:14 +02:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
test {
|
2023-07-20 11:01:21 +02:00
|
|
|
// https://github.com/iBotPeaches/Apktool/issues/3174
|
|
|
|
systemProperty 'jdk.nio.zipfs.allowDotZipEntry', 'true'
|
|
|
|
systemProperty 'jdk.util.zip.disableZip64ExtraFieldValidation', 'true'
|
|
|
|
|
2014-10-23 15:05:14 +02:00
|
|
|
testLogging {
|
|
|
|
exceptionFormat = 'full'
|
|
|
|
}
|
2014-02-10 01:49:59 +01:00
|
|
|
}
|
2021-03-07 21:04:16 +01:00
|
|
|
|
2021-11-08 12:32:41 +01:00
|
|
|
def mavenProjects = ['apktool-lib', 'apktool-cli', 'brut.j.common', 'brut.j.util', 'brut.j.dir']
|
2021-03-10 13:10:16 +01:00
|
|
|
|
|
|
|
if (project.name in mavenProjects) {
|
2021-03-07 21:04:16 +01:00
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
apply plugin: 'signing'
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
2021-03-09 02:10:11 +01:00
|
|
|
maven(MavenPublication) {
|
2021-03-10 13:10:16 +01:00
|
|
|
from project.components.java
|
2021-03-09 02:10:11 +01:00
|
|
|
|
|
|
|
groupId = 'org.apktool'
|
2021-03-10 13:10:16 +01:00
|
|
|
artifactId = project.name
|
2021-03-09 02:10:11 +01:00
|
|
|
version = mavenVersion
|
|
|
|
|
2021-03-07 21:04:16 +01: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-09 02:10:11 +01:00
|
|
|
url = 'https://github.com/iBotPeaches/Apktool'
|
2021-03-07 21:04:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rootProject.hasProperty('ossrhUsername') && rootProject.hasProperty('ossrhPassword')) {
|
|
|
|
repositories {
|
|
|
|
maven {
|
2021-03-09 02:10:11 +01: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 21:04:16 +01:00
|
|
|
credentials {
|
|
|
|
username ossrhUsername
|
|
|
|
password ossrhPassword
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
signing {
|
|
|
|
required { gradle.taskGraph.hasTask('publish') }
|
2021-03-09 02:10:11 +01:00
|
|
|
sign(publishing.publications["maven"])
|
2021-03-07 21:04:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
withJavadocJar()
|
|
|
|
withSourcesJar()
|
|
|
|
}
|
|
|
|
|
2021-04-13 14:13:15 +02:00
|
|
|
tasks.getByPath(':release').dependsOn(publish)
|
|
|
|
tasks.getByPath(':snapshot').dependsOn(publish)
|
2021-03-07 21:04:16 +01:00
|
|
|
}
|
2013-01-30 04:01:31 +01:00
|
|
|
}
|