revanced-patches/build.gradle.kts

154 lines
4.5 KiB
Plaintext
Raw Normal View History

2023-10-14 04:38:39 +02:00
import org.gradle.kotlin.dsl.support.listFilesOrdered
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2023-10-14 04:38:39 +02:00
2022-03-21 16:19:51 +01:00
plugins {
2024-02-15 04:38:06 +01:00
alias(libs.plugins.kotlin)
2023-12-02 22:35:13 +01:00
alias(libs.plugins.binary.compatibility.validator)
2023-10-14 04:38:39 +02:00
`maven-publish`
2024-02-15 04:38:06 +01:00
signing
2022-03-21 16:19:51 +01:00
}
group = "app.revanced"
2022-03-21 16:19:51 +01:00
repositories {
mavenCentral()
mavenLocal()
google()
2024-02-15 04:38:06 +01:00
maven {
// A repository must be speficied for some reason. "registry" is a dummy.
url = uri("https://maven.pkg.github.com/revanced/registry")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
2022-03-21 16:19:51 +01:00
}
dependencies {
implementation(libs.revanced.patcher)
implementation(libs.smali)
// TODO: Required because build fails without it. Find a way to remove this dependency.
implementation(libs.guava)
// Used in JsonGenerator.
implementation(libs.gson)
}
2023-05-08 01:15:26 +02:00
kotlin {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_11)
}
}
java {
targetCompatibility = JavaVersion.VERSION_11
2023-05-08 01:15:26 +02:00
}
2024-02-15 04:38:06 +01:00
tasks {
withType(Jar::class) {
exclude("app/revanced/meta")
manifest {
attributes["Name"] = "ReVanced Patches"
attributes["Description"] = "Patches for ReVanced."
attributes["Version"] = version
attributes["Timestamp"] = System.currentTimeMillis().toString()
attributes["Source"] = "git@github.com:revanced/revanced-patches.git"
attributes["Author"] = "ReVanced"
attributes["Contact"] = "contact@revanced.app"
attributes["Origin"] = "https://revanced.app"
attributes["License"] = "GNU General Public License v3.0"
}
2023-11-28 00:04:39 +01:00
}
2024-02-15 04:38:06 +01:00
register("buildDexJar") {
description = "Build and add a DEX to the JAR file"
group = "build"
2023-10-14 04:38:39 +02:00
dependsOn(build)
2022-06-16 12:55:13 +02:00
doLast {
2023-10-14 04:38:39 +02:00
val d8 = File(System.getenv("ANDROID_HOME")).resolve("build-tools")
.listFilesOrdered().last().resolve("d8").absolutePath
2024-02-15 04:38:06 +01:00
val patchesJar = configurations.archives.get().allArtifacts.files.files.first().absolutePath
2023-10-14 04:38:39 +02:00
val workingDirectory = layout.buildDirectory.dir("libs").get().asFile
2022-06-16 12:55:13 +02:00
exec {
2023-10-14 04:38:39 +02:00
workingDir = workingDirectory
commandLine = listOf(d8, "--release", patchesJar)
2022-06-16 12:55:13 +02:00
}
exec {
2023-10-14 04:38:39 +02:00
workingDir = workingDirectory
2024-02-15 04:38:06 +01:00
commandLine = listOf("zip", "-u", patchesJar, "classes.dex")
2022-06-16 12:55:13 +02:00
}
}
}
2024-02-15 04:38:06 +01:00
register<JavaExec>("generatePatchesFiles") {
description = "Generate patches files"
2023-10-14 04:38:39 +02:00
dependsOn(build)
classpath = sourceSets["main"].runtimeClasspath
2024-02-15 04:38:06 +01:00
mainClass.set("app.revanced.generator.MainKt")
}
2024-02-15 04:38:06 +01:00
// Needed by gradle-semantic-release-plugin.
2023-10-14 04:38:39 +02:00
// Tracking: https://github.com/KengoTODA/gradle-semantic-release-plugin/issues/435
2024-02-15 04:38:06 +01:00
publish {
dependsOn("buildDexJar")
dependsOn("generatePatchesFiles")
}
2022-06-16 13:33:50 +02:00
}
2023-10-14 04:38:39 +02:00
publishing {
2024-02-15 04:43:40 +01:00
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/revanced/revanced-patches")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
2023-10-14 04:38:39 +02:00
publications {
create<MavenPublication>("revanced-patches-publication") {
from(components["java"])
pom {
name = "ReVanced Patches"
description = "Patches for ReVanced."
url = "https://revanced.app"
licenses {
license {
name = "GNU General Public License v3.0"
url = "https://www.gnu.org/licenses/gpl-3.0.en.html"
}
}
developers {
developer {
id = "ReVanced"
name = "ReVanced"
email = "contact@revanced.app"
}
}
scm {
connection = "scm:git:git://github.com/revanced/revanced-patches.git"
developerConnection = "scm:git:git@github.com:revanced/revanced-patches.git"
url = "https://github.com/revanced/revanced-patches"
}
}
}
}
}
2024-02-15 04:38:06 +01:00
signing {
useGpgCmd()
sign(publishing.publications["revanced-patches-publication"])
}