diff options
Diffstat (limited to 'patches/server/0001-Setup-Gradle-project.patch')
-rw-r--r-- | patches/server/0001-Setup-Gradle-project.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/patches/server/0001-Setup-Gradle-project.patch b/patches/server/0001-Setup-Gradle-project.patch index b5c120a1df..d3e3f1ad9d 100644 --- a/patches/server/0001-Setup-Gradle-project.patch +++ b/patches/server/0001-Setup-Gradle-project.patch @@ -28,7 +28,7 @@ index 37dab9e868dbfb019c271a547d975a48ad1cb571..3811c0d849a3eb028ed1a6b7a2d4747f +/.factorypath diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 -index 0000000000000000000000000000000000000000..b3055953028759e4754d507c31f387b6bf7c0108 +index 0000000000000000000000000000000000000000..a41b15de7eba00d62822f582015d324ccde7dfe7 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,119 @@ @@ -135,9 +135,9 @@ index 0000000000000000000000000000000000000000..b3055953028759e4754d507c31f387b6 + runtime.filterNot { it.asFile.absolutePath == vanilla } + } + -+tasks.registerRunTask("runShadow") { -+ description = "Spin up a test server from the shadowJar archiveFile" -+ classpath(tasks.shadowJar.flatMap { it.archiveFile }) ++tasks.registerRunTask("runServerJar") { ++ description = "Spin up a test server from the serverJar archiveFile" ++ classpath(tasks.serverJar.flatMap { it.archiveFile }) + classpath(runtimeClasspathWithoutVanillaServer) +} + |