-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
34 lines (28 loc) · 838 Bytes
/
build.gradle.kts
File metadata and controls
34 lines (28 loc) · 838 Bytes
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
plugins {
java
// add
application
id("org.openjfx.javafxplugin") version "0.0.9"
id("com.github.ben-manes.versions") version "0.38.0"
id("com.github.johnrengelman.shadow") version "6.1.0"
}
application {
mainClassName = "com.suushiemaniac.cubing.bld.santascramble.Main"
}
group = "org.example"
version = "1.0-SNAPSHOT"
dependencies {
implementation("com.suushiemaniac:cubing.bld.suite:3.0")
implementation("com.suushiemaniac:lang.json:2.0")
implementation("org.worldcubeassociation.tnoodle:lib-scrambles:0.18.0")
implementation("org.worldcubeassociation.tnoodle:scrambler-min2phase:0.18.0")
}
repositories {
mavenCentral()
mavenLocal()
maven(url = "https://dl.bintray.com/thewca/tnoodle-lib")
}
javafx {
version = "11"
modules = listOf("javafx.controls", "javafx.fxml")
}