Skip to content

Commit

Permalink
Fix some 8.13 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Dec 18, 2024
1 parent 60a321c commit 77f3a2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/test/resources/projects/mavenLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ publishing {
from components.java

artifact(remapJar) {
classifier "classifier"
classifier = "classifier"
}
}
}

repositories {
maven {
url "http://localhost:${System.getProperty("loom.test.mavenPort")}/"
url = "http://localhost:${System.getProperty("loom.test.mavenPort")}/"
allowInsecureProtocol = true
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/test/resources/projects/signed/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ publishing {
from components.java
artifact(remapJar) {
builtBy remapJar
classifier "classifier"
classifier = "classifier"
}
}
}

repositories {
maven {
url "http://localhost:${System.getProperty("loom.test.mavenPort")}/"
url = "http://localhost:${System.getProperty("loom.test.mavenPort")}/"
allowInsecureProtocol = true
}
}
Expand Down

0 comments on commit 77f3a2d

Please sign in to comment.