File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ dependencies {
2323
2424tasks {
2525 processResources {
26+ inputs.property(" version" , project.version)
27+ inputs.property(" description" , project.description)
2628 filesMatching(
2729 listOf (
2830 " plugin.yml" ,
@@ -32,8 +34,8 @@ tasks {
3234 )
3335 ) {
3436 expand(
35- " version" to project. version,
36- " description" to project. description,
37+ " version" to inputs.properties[ " version" ] ,
38+ " description" to inputs.properties[ " description" ] ,
3739 " url" to " https://modrinth.com/plugin/pistonqueue" ,
3840 )
3941 }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ org.gradle.daemon=true
44org.gradle.parallel =true
55org.gradle.configureondemand =true
66org.gradle.caching =true
7- # org.gradle.configuration-cache=true
7+ org.gradle.configuration-cache =true
88org.gradle.vfs.watch =true
99org.gradle.console =rich
1010org.gradle.warning.mode =all
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ dependencyResolutionManagement {
3434 maven(" https://repo.codemc.org/repository/maven-public" ) {
3535 name = " CodeMC"
3636 }
37- maven(" https://repo.dmulloy2.net/nexus/ repository/public" ) {
37+ maven(" https://repo.dmulloy2.net/repository/public" ) {
3838 name = " dmulloy2"
3939 }
4040 maven(" https://repo.extendedclip.com/content/repositories/placeholderapi/" ) {
You can’t perform that action at this time.
0 commit comments