diff --git a/.github/workflows/build-prs.yml b/.github/workflows/build-prs.yml index a602d457..82f9a951 100644 --- a/.github/workflows/build-prs.yml +++ b/.github/workflows/build-prs.yml @@ -21,4 +21,4 @@ jobs: with: java: 17 gradle_tasks: test - jar_compatibility: true + jar_compatibility: false diff --git a/.github/workflows/publish-jcc.yml b/.github/workflows/publish-jcc.yml index 939976f3..f04c0ea6 100644 --- a/.github/workflows/publish-jcc.yml +++ b/.github/workflows/publish-jcc.yml @@ -11,7 +11,7 @@ on: jobs: publish-jcc: - if: true + if: false # Option not enabled when the workflows were generated uses: neoforged/actions/.github/workflows/publish-jcc.yml@main with: beta_version_pattern: .* # Change this line if there's a clear point at which a version no longer accepts breaking changes diff --git a/.github/workflows/publish-prs.yml b/.github/workflows/publish-prs.yml index 94751941..85a6bcad 100644 --- a/.github/workflows/publish-prs.yml +++ b/.github/workflows/publish-prs.yml @@ -23,7 +23,7 @@ jobs: if: true uses: neoforged/actions/.github/workflows/publish-prs.yml@main with: - artifact_base_path: net/neoforged/neoform-runtime/ + artifact_base_path: net/neoforged/moddev-gradle/ secrets: PR_PUBLISHING_GH_APP_ID: ${{ secrets.PR_PUBLISHING_GH_APP_ID }} PR_PUBLISHING_GH_APP_KEY: ${{ secrets.PR_PUBLISHING_GH_APP_KEY }} diff --git a/build.gradle b/build.gradle index 620e4a8d..b52b8e9e 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,6 @@ plugins { id 'java-gradle-plugin' id 'maven-publish' id "net.neoforged.gradleutils" version "3.0.0-alpha.13" - id 'net.neoforged.jarcompatibilitychecker' version '0.1.3' } group = 'net.neoforged' @@ -20,10 +19,6 @@ changelog { disableAutomaticPublicationRegistration() } -checkJarCompatibility { - isAPI = true -} - repositories { mavenCentral() gradlePluginPortal() diff --git a/settings.gradle b/settings.gradle index 304db8da..050ab600 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,15 +1,3 @@ -pluginManagement { - repositories { - maven { - name = "NeoForge" - url = "https://maven.neoforged.net/releases/" - content { - includeGroupAndSubgroups "net.neoforged" - } - } - gradlePluginPortal() - } -} plugins { id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'