From b9fcaaaba938da57f281c3c930f76a115313cff1 Mon Sep 17 00:00:00 2001 From: Pierce Corcoran Date: Sun, 2 Aug 2020 15:14:05 -0700 Subject: [PATCH] Fix bintray project names --- build.gradle | 5 ++++- gradle-docs.md | 5 +++++ gradle.properties | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index a9f6eefeb..587289f67 100644 --- a/build.gradle +++ b/build.gradle @@ -290,7 +290,10 @@ configure(productionModules + [project]) { repo = "teamwizardry" userOrg = "teamwizardry" - name = project.name + if(project != rootProject) + name = "librarianlib-" + project.name + else + name = project.name desc = project.description labels = ["minecraft", "mc", "mod", "modding", "forge", "library", "wizardry"] licenses = ["LGPL-3.0"] diff --git a/gradle-docs.md b/gradle-docs.md index b9b2f1bff..c4d0f147a 100644 --- a/gradle-docs.md +++ b/gradle-docs.md @@ -80,9 +80,14 @@ https://github.com/bintray/gradle-bintray-plugin ### New Release - Bump the version in `gradle.properties` +- Run `./gradlew clean build` to verify the project builds correctly - Create a new commit with *only* that change, with the message `Publish v` - Create a new tag named `v` on that commit - Push to GitHub +- Create a new release with the specified tag +- Upload the deobf, source, and obf jars from the root `build/libs` directory +- Publish the release +- TODO: CurseForge ### New Module New packages must first have a release build published to Bintray, which only allows release builds. Once the package is diff --git a/gradle.properties b/gradle.properties index b8c6cf934..4f19e10a1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,7 +11,7 @@ mc_mappings_channel=snapshot mc_mappings_version=20200401-1.15.1 # Liblib versions -mod_version=5.0.0a1 +mod_version=5.0.0a2 # Library versions kottle_version=1.5.2