-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
54 lines (44 loc) · 1.03 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import java.net.URL
import java.net.URLClassLoader
plugins {
java
application
}
application {
mainClass.set("up.wargroove.desktop.WargrooveLauncher")
applicationName = "Wargroove"
}
var pluginPath = "up.wargroove.plugins."
tasks.create("selectPlugin") {
dependsOn(configurations.runtimeClasspath)
val urls: Array<URL> = configurations.runtimeClasspath.get().map { it.toURI().toURL() }.toTypedArray()
val loader: ClassLoader = URLClassLoader(urls, null)
doLast {
try {
val c = loader.loadClass(pluginPath + "PluginSelector")
val method = c.getDeclaredMethod("run")
method.invoke(null)
} catch (e: Exception) {
throw e.cause!!
}
}
}
distributions {
main {
contents {
from("../db") {
into("db/")
}
from("../damageMatrix") {
into("damageMatrix/")
}
}
}
}
sourceSets {
main {
java {
srcDirs("src/")
}
}
}