mirror of
https://github.com/revanced/revanced-cli.git
synced 2024-11-03 18:33:55 +01:00
62 lines
1.8 KiB
Plaintext
62 lines
1.8 KiB
Plaintext
plugins {
|
|
kotlin("jvm") version "1.7.0"
|
|
id("com.github.johnrengelman.shadow") version "7.1.2"
|
|
}
|
|
|
|
group = "app.revanced"
|
|
|
|
val githubUsername: String = project.findProperty("gpr.user") as? String ?: System.getenv("GITHUB_ACTOR")
|
|
val githubPassword: String = project.findProperty("gpr.key") as? String ?: System.getenv("GITHUB_TOKEN")
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url = uri("https://maven.pkg.github.com/revanced/multidexlib2")
|
|
credentials {
|
|
username = githubUsername
|
|
password = githubPassword
|
|
}
|
|
}
|
|
maven {
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
|
|
credentials {
|
|
username = githubUsername
|
|
password = githubPassword
|
|
}
|
|
}
|
|
maven { url = uri("https://jitpack.io") }
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
implementation(kotlin("reflect"))
|
|
|
|
implementation("app.revanced:revanced-patcher:1.7.0")
|
|
implementation("info.picocli:picocli:4.6.3")
|
|
implementation("com.android.tools.build:apksig:7.2.1")
|
|
implementation("com.github.revanced:jadb:master-SNAPSHOT") // updated fork
|
|
implementation("org.bouncycastle:bcpkix-jdk15on:1.70")
|
|
}
|
|
|
|
tasks {
|
|
build {
|
|
dependsOn(shadowJar)
|
|
}
|
|
shadowJar {
|
|
manifest {
|
|
attributes("Main-Class" to "app.revanced.cli.main.MainKt")
|
|
attributes("Implementation-Title" to project.name)
|
|
attributes("Implementation-Version" to project.version)
|
|
}
|
|
}
|
|
// Dummy task to fix the Gradle semantic-release plugin.
|
|
// Remove this if you forked it to support building only.
|
|
// Tracking issue: https://github.com/KengoTODA/gradle-semantic-release-plugin/issues/435
|
|
register<DefaultTask>("publish") {
|
|
group = "publish"
|
|
description = "Dummy task"
|
|
dependsOn(build)
|
|
}
|
|
}
|