-
-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(Needs bump): Use correct Maven repository URL
- Loading branch information
Showing
3 changed files
with
61 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
plugins { | ||
kotlin("jvm") version "1.9.0" | ||
`maven-publish` | ||
alias(libs.plugins.ksp) | ||
} | ||
|
||
group = "app.revanced" | ||
|
||
dependencies { | ||
implementation(libs.symbol.processing.api) | ||
implementation(libs.kotlinpoet.ksp) | ||
|
@@ -35,7 +32,7 @@ publishing { | |
mavenLocal() | ||
maven { | ||
name = "GitHubPackages" | ||
url = uri("https://maven.pkg.github.com/revanced/revanced-patch-annotations-processor") | ||
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher") | ||
credentials { | ||
username = System.getenv("GITHUB_ACTOR") | ||
password = System.getenv("GITHUB_TOKEN") | ||
|
@@ -45,6 +42,33 @@ publishing { | |
publications { | ||
create<MavenPublication>("gpr") { | ||
from(components["java"]) | ||
|
||
version = project.version.toString() | ||
|
||
pom { | ||
name = "ReVanced Patch annotations 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 = "[email protected]" | ||
} | ||
} | ||
scm { | ||
connection = "scm:git:git://github.com/revanced/revanced-patcher.git" | ||
developerConnection = "scm:git:[email protected]:revanced/revanced-patcher.git" | ||
url = "https://github.com/revanced/revanced-patcher" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
plugins { | ||
kotlin("jvm") version "1.9.0" | ||
`maven-publish` | ||
} | ||
|
||
group = "app.revanced" | ||
|
||
dependencies { | ||
implementation(libs.kotlinx.coroutines.core) | ||
implementation(libs.xpp3) | ||
|
@@ -53,6 +50,33 @@ publishing { | |
publications { | ||
create<MavenPublication>("gpr") { | ||
from(components["java"]) | ||
|
||
version = project.version.toString() | ||
|
||
pom { | ||
name = "ReVanced Patcher" | ||
description = "Patcher used by 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 = "[email protected]" | ||
} | ||
} | ||
scm { | ||
connection = "scm:git:git://github.com/revanced/revanced-patcher.git" | ||
developerConnection = "scm:git:[email protected]:revanced/revanced-patcher.git" | ||
url = "https://github.com/revanced/revanced-patcher" | ||
} | ||
} | ||
} | ||
} | ||
} |