From 0724adda16b25b387598e941f6c34a22f765587d Mon Sep 17 00:00:00 2001 From: Vice Date: Sat, 8 Jul 2023 16:46:33 -0400 Subject: [PATCH] bump version fix gradle build fg fix fg fix --- .github/workflows/gradle-publish.yml | 45 ------------------------ build.gradle | 2 +- gradle.properties | 4 +-- gradle/wrapper/gradle-wrapper.properties | 2 +- 4 files changed, 4 insertions(+), 49 deletions(-) delete mode 100644 .github/workflows/gradle-publish.yml diff --git a/.github/workflows/gradle-publish.yml b/.github/workflows/gradle-publish.yml deleted file mode 100644 index 42eae27..0000000 --- a/.github/workflows/gradle-publish.yml +++ /dev/null @@ -1,45 +0,0 @@ -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. -# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created -# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle - -name: Gradle Package - -on: - release: - types: [created] - -jobs: - build: - - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - - steps: - - uses: actions/checkout@v3 - - name: Set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: '11' - distribution: 'temurin' - server-id: github # Value of the distributionManagement/repository/id field of the pom.xml - settings-path: ${{ github.workspace }} # location for the settings.xml file - - - name: Build with Gradle - uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1 - with: - arguments: build - - # The USERNAME and TOKEN need to correspond to the credentials environment variables used in - # the publishing section of your build.gradle - - name: Publish to GitHub Packages - uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1 - with: - arguments: publish - env: - USERNAME: ${{ github.actor }} - TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/build.gradle b/build.gradle index 0d1a572..f8ab555 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ buildscript { } } dependencies { - classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true + classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: forgegradle_version, changing: true classpath group: 'org.spongepowered', name: 'mixingradle', version: "${mixingradle_version}" //classpath 'org.parchmentmc:librarian:1.+' classpath "gradle.plugin.com.matthewprenger:CurseGradle:1.4.0" diff --git a/gradle.properties b/gradle.properties index ae1aede..5105454 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,14 +5,14 @@ org.gradle.daemon = false # mod version info mod_id = rubidium_extras -mod_version = 1.4.1 +mod_version = 1.4.3 forge_version = 47.0.19 mappings_version=1.20.1 minecraft_version = 1.20.1 mappings_channel=official # build dependency versions -forgegradle_version = 5.1.+ +forgegradle_version = 6.+ mixingradle_version = 0.7-SNAPSHOT shadow_version = 6.1.0 cursegradle_version = 1.4.0 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 05679dc..fae0804 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists