Skip to content

Commit

Permalink
Fix fresh forge build with configuration cache
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Sep 6, 2024
1 parent 5323063 commit bd5bbe5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Forge/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import net.darkhax.curseforgegradle.TaskPublishCurseForge
import net.minecraftforge.gradle.common.tasks.DownloadMavenArtifact
import net.minecraftforge.gradle.common.tasks.JarExec
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
import net.darkhax.curseforgegradle.Constants as CFG_Constants
Expand Down Expand Up @@ -252,3 +253,7 @@ sourceSets.forEach {
tasks.withType<DownloadMavenArtifact> {
notCompatibleWithConfigurationCache("uses Task.project at execution time")
}

tasks.withType<JarExec> {
notCompatibleWithConfigurationCache("uses external process at execution time")
}

0 comments on commit bd5bbe5

Please sign in to comment.