revanced-patches/build.gradle.kts

123 lines
3.7 KiB
Plaintext
Raw Normal View History

2023-10-14 04:38:39 +02:00
import org.gradle.kotlin.dsl.support.listFilesOrdered
2022-03-21 16:19:51 +01:00
plugins {
kotlin("jvm") version "1.9.22"
2023-12-02 22:35:13 +01:00
alias(libs.plugins.binary.compatibility.validator)
2023-10-14 04:38:39 +02:00
`maven-publish`
2022-03-21 16:19:51 +01:00
}
group = "app.revanced"
2022-03-21 16:19:51 +01:00
repositories {
mavenCentral()
mavenLocal()
google()
maven { url = uri("https://jitpack.io") }
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-10-14 04:38:39 +02:00
// A dependency to the Android library unfortunately fails the build, which is why this is required.
compileOnly(project("dummy"))
}
2023-05-08 01:15:26 +02:00
kotlin {
jvmToolchain(11)
}
2023-11-28 00:04:39 +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"
}
}
tasks {
register<DefaultTask>("generateBundle") {
2023-12-14 01:14:38 +01:00
description = "Generate DEX files and add them in the JAR file"
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
val artifacts = configurations.archives.get().allArtifacts.files.files.first().absolutePath
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, artifacts)
2022-06-16 12:55:13 +02:00
}
exec {
2023-10-14 04:38:39 +02:00
workingDir = workingDirectory
commandLine = listOf("zip", "-u", artifacts, "classes.dex")
2022-06-16 12:55:13 +02:00
}
}
}
2022-08-28 21:39:13 +02:00
register<JavaExec>("generateMeta") {
description = "Generate metadata for this bundle"
2023-10-14 04:38:39 +02:00
dependsOn(build)
classpath = sourceSets["main"].runtimeClasspath
mainClass.set("app.revanced.meta.IPatchesFileGenerator")
}
2023-10-14 04:38:39 +02:00
// Required to run tasks because Gradle semantic-release plugin runs the publish task.
// Tracking: https://github.com/KengoTODA/gradle-semantic-release-plugin/issues/435
named("publish") {
dependsOn("generateBundle")
dependsOn("generateMeta")
}
2022-06-16 13:33:50 +02:00
}
2023-10-14 04:38:39 +02:00
publishing {
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"
}
}
}
}
}