mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 01:02:22 +01:00
45 lines
No EOL
1.4 KiB
Text
45 lines
No EOL
1.4 KiB
Text
plugins {
|
|
alias(libs.plugins.ksp)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.symbol.processing.api)
|
|
implementation(libs.kotlinpoet.ksp)
|
|
implementation(project(":revanced-patcher"))
|
|
|
|
testImplementation(libs.kotlin.test)
|
|
testImplementation(libs.kotlin.compile.testing)
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("revanced-patch-annotation-processor-publication") {
|
|
from(components["java"])
|
|
|
|
pom {
|
|
name = "ReVanced patch annotation processor"
|
|
description = "Annotation processor for patches."
|
|
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-patcher.git"
|
|
developerConnection = "scm:git:git@github.com:revanced/revanced-patcher.git"
|
|
url = "https://github.com/revanced/revanced-patcher"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |