Skip to content

Commit

Permalink
build: fix data run generation
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTJP committed Jul 4, 2023
1 parent 507430b commit be94b67
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions expansion/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ minecraft {
workingDirectory file('run')
args '--mod', mod_id, '--all', '--output', file("src/main/generated"), '--existing', file("src/main/resources")
mods {
'projectred_core' { source project(':core').sourceSets.main }
'${mod_id}' { source sourceSets.main }
}
}
Expand Down
1 change: 1 addition & 0 deletions exploration/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ minecraft {
workingDirectory file('run')
args '--mod', mod_id, '--all', '--output', file("src/main/generated"), '--existing', file("src/main/resources")
mods {
'projectred_core' { source project(':core').sourceSets.main }
'${mod_id}' { source sourceSets.main }
}
}
Expand Down
1 change: 1 addition & 0 deletions illumination/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ minecraft {
workingDirectory file('run')
args '--mod', mod_id, '--all', '--output', file("src/main/generated"), '--existing', file("src/main/resources")
mods {
'projectred_core' { source project(':core').sourceSets.main }
'${mod_id}' { source sourceSets.main }
}
}
Expand Down
1 change: 1 addition & 0 deletions integration/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ minecraft {
workingDirectory file('run')
args '--mod', mod_id, '--all', '--output', file("src/main/generated"), '--existing', file("src/main/resources")
mods {
'projectred_core' { source project(':core').sourceSets.main }
'${mod_id}' { source sourceSets.main }
}
}
Expand Down
1 change: 1 addition & 0 deletions transmission/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ minecraft {
workingDirectory file('run')
args '--mod', mod_id, '--all', '--output', file("src/main/generated"), '--existing', file("src/main/resources")
mods {
'projectred_core' { source project(':core').sourceSets.main }
'${mod_id}' { source sourceSets.main }
}
}
Expand Down

0 comments on commit be94b67

Please sign in to comment.