mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-07 00:38:46 +00:00
Clean up plugin script compilation
This commit is contained in:
+2
-4
@@ -36,11 +36,9 @@ dependencies {
|
||||
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
|
||||
}
|
||||
|
||||
task run(type: JavaExec, dependsOn: [classes, pluginClasses]) {
|
||||
FileCollection gameClasspath = sourceSets.main.runtimeClasspath + sourceSets.main.compileClasspath
|
||||
|
||||
task run(type: JavaExec, dependsOn: classes) {
|
||||
main = 'org.apollo.Server'
|
||||
classpath = gameClasspath
|
||||
classpath = sourceSets.main.runtimeClasspath
|
||||
jvmArgs = ['-Xmx1750M']
|
||||
workingDir = "$rootDir"
|
||||
}
|
||||
Reference in New Issue
Block a user