Skip to content

Commit

Permalink
Actually use the latest CrucibleGradle version
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmuscaria committed Feb 5, 2024
1 parent a43cf4a commit edccac9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "io.github.cruciblemc"
version = "1.1-SNAPSHOT"
version = "1.2-SNAPSHOT"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,13 @@ private void writeFile() throws IOException {
.stream().map(dep -> dep.getGroup() + ':' + dep.getName() + ':' + dep.getVersion())
.collect(Collectors.toList());

o.append(" // MC libraries").append(NEWLINE);
for (String dep : deps) {
o.append(NEWLINE).append(" // Library overwrites").append(NEWLINE);
for (String dep : libraryOverwrite) {
o.append(" api '").append(dep).append('\'').append(NEWLINE);
}

o.append(NEWLINE).append(" // Library overwrites").append(NEWLINE);
for (String dep : libraryOverwrite) {
o.append(" // MC libraries").append(NEWLINE);
for (String dep : deps) {
o.append(" api '").append(dep).append('\'').append(NEWLINE);
}
} else {
Expand Down

0 comments on commit edccac9

Please sign in to comment.