mirror of
https://github.com/recloudstream/gradle.git
synced 2024-08-14 23:56:59 +00:00
55 lines
No EOL
1.3 KiB
Text
55 lines
No EOL
1.3 KiB
Text
plugins {
|
|
kotlin("jvm") version "1.5.21"
|
|
id("java-gradle-plugin")
|
|
id("maven-publish")
|
|
}
|
|
|
|
group = "com.lagradost"
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven("https://jitpack.io")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib", kotlin.coreLibrariesVersion))
|
|
compileOnly(gradleApi())
|
|
|
|
compileOnly("com.google.guava:guava:30.1.1-jre")
|
|
compileOnly("com.android.tools:sdk-common:30.0.0")
|
|
compileOnly("com.android.tools.build:gradle:7.0.0")
|
|
|
|
implementation("com.github.Aliucord.dex2jar:dex-translator:d5a5efb06c")
|
|
implementation("com.github.Aliucord.jadx:jadx-core:1a213e978d")
|
|
implementation("com.github.Aliucord.jadx:jadx-dex-input:1a213e978d")
|
|
implementation("com.github.js6pak:jadb:fix-modified-time-SNAPSHOT")
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("com.lagradost.gradle") {
|
|
id = "com.lagradost.gradle"
|
|
implementationClass = "com.lagradost.gradle.CloudstreamPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
repositories {
|
|
val token = System.getenv("GITHUB_TOKEN")
|
|
|
|
if (token != null) {
|
|
maven {
|
|
setUrl("https://maven.pkg.github.com/recloudstream/gradle")
|
|
}
|
|
} else {
|
|
mavenLocal()
|
|
}
|
|
}
|
|
} |