mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-22 03:43:30 +01:00
made it run
This commit is contained in:
parent
05b815ac97
commit
fe1010a4d6
1 changed files with 8 additions and 6 deletions
12
build.gradle
12
build.gradle
|
@ -9,7 +9,7 @@ version = mod_version
|
|||
group = mod_group_id
|
||||
|
||||
base {
|
||||
archivesName = mod_id
|
||||
archivesName = mod_name
|
||||
}
|
||||
|
||||
// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17.
|
||||
|
@ -79,10 +79,6 @@ minecraft {
|
|||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
|
||||
lazyToken('minecraft_classpath') {
|
||||
configurations.embed.copyRecursive().resolve().collect { it.absolutePath }.join(File.pathSeparator)
|
||||
}
|
||||
}
|
||||
|
||||
client {
|
||||
|
@ -109,6 +105,12 @@ minecraft {
|
|||
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
|
||||
args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
|
||||
}
|
||||
|
||||
all {
|
||||
lazyToken('minecraft_classpath') {
|
||||
configurations.embed.copyRecursive().resolve().collect { it.absolutePath }.join(File.pathSeparator)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue