Skip to content

Commit

Permalink
make neoforge build ready for Gradle 8.11
Browse files Browse the repository at this point in the history
  • Loading branch information
cech12 committed Nov 28, 2024
1 parent 8d756fe commit 89e0e1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions neoforge/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'idea'
id 'maven-publish'
id 'net.neoforged.gradle.userdev' version '7.0.165'
id 'net.neoforged.gradle.userdev' version '7.0.171'
id 'java-library'
}
base {
Expand All @@ -23,13 +23,13 @@ runs {
}
server {
systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id
programArgument '--nogui'
argument '--nogui'
}
gameTestServer {
systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id
}
data {
programArguments.addAll '--mod', project.mod_id, '--all', '--output', file('src/generated/resources/').getAbsolutePath(), '--existing', file('src/main/resources/').getAbsolutePath()
arguments.addAll '--mod', project.mod_id, '--all', '--output', file('src/generated/resources/').getAbsolutePath(), '--existing', file('src/main/resources/').getAbsolutePath()
}
}

Expand Down

0 comments on commit 89e0e1c

Please sign in to comment.