revanced-patches-tasker/build.gradle.kts

25 lines
661 B
Plaintext
Raw Normal View History

2022-03-21 15:19:51 +00:00
plugins {
kotlin("jvm") version "1.7.0"
2022-03-21 15:19:51 +00:00
}
group = "app.revanced"
2022-03-21 15:19:51 +00:00
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")
2022-03-21 15:19:51 +00:00
repositories {
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
2022-03-21 15:19:51 +00:00
credentials {
username = githubUsername
password = githubPassword
2022-03-21 15:19:51 +00:00
}
}
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.21")
2022-03-21 15:19:51 +00:00
2022-06-11 23:38:54 +00:00
implementation("app.revanced:revanced-patcher:1.1.0")
}