File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ public class DevServerPlugin : Plugin<Project> {
107
107
description = " Copy server core to server directory"
108
108
109
109
val source = if (serverConfiguration.coreType == CoreType .SPIGOT ) {
110
- buildServerCore.map { it.buildToolsFile .get() }
110
+ buildServerCore.map { it.spigotFile .get() }
111
111
} else {
112
112
downloadPaperclip.map { it.paperclipFile.get() }
113
113
}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public abstract class BuildServerCore : JavaExec() {
19
19
@get:Input
20
20
public abstract val version: Property <String >
21
21
22
- @OutputFile
22
+ @get: OutputFile
23
23
public val spigotFile: Provider <File > = buildToolsFile.zip(version) { buildToolsFile, version ->
24
24
File (buildToolsFile.parentFile, " spigot-$version .jar" )
25
25
}
You can’t perform that action at this time.
0 commit comments