chore: Add ReVanced Library subproject boilerplate

This commit is contained in:
oSumAtrIX 2023-09-15 03:01:09 +02:00
parent d09aca65df
commit 2b77608651
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
6 changed files with 75 additions and 1 deletions

View File

@ -4,6 +4,8 @@ plugins {
}
dependencies {
implementation(project(":revanced-lib"))
implementation(libs.revanced.patcher)
implementation(libs.kotlin.reflect)
implementation(libs.kotlinx.coroutines.core)

View File

@ -0,0 +1 @@
rootProject.name = "revanced-cli"

View File

@ -0,0 +1,69 @@
plugins {
kotlin("jvm") version "1.9.0"
`maven-publish`
}
dependencies {
testImplementation(libs.kotlin.test)
}
kotlin { jvmToolchain(11) }
java {
withSourcesJar()
}
tasks {
test {
useJUnitPlatform()
testLogging {
events("PASSED", "SKIPPED", "FAILED")
}
}
}
publishing {
repositories {
mavenLocal()
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/revanced/revanced-cli")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
publications {
create<MavenPublication>("gpr") {
from(components["java"])
version = project.version.toString()
pom {
name = "ReVanced Library"
description = "Library 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-cli.git"
developerConnection = "scm:git:git@github.com:revanced/revanced-cli.git"
url = "https://github.com/revanced/revanced-cli"
}
}
}
}
}

View File

@ -0,0 +1 @@
rootProject.name = "revanced-lib"

View File

@ -0,0 +1 @@
version=${projectVersion}

View File

@ -20,4 +20,4 @@ dependencyResolutionManagement {
}
}
include("revanced-cli")
include("revanced-cli", "revanced-lib")