Skip to content

Commit

Permalink
Fix bintray project names
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodewarrior committed Aug 2, 2020
1 parent 4c02080 commit b9fcaaa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
5 changes: 5 additions & 0 deletions gradle-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<version>`
- Create a new tag named `v<version>` 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
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b9fcaaa

Please sign in to comment.