forked from johanvos/strangefx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (53 loc) · 1.76 KB
/
build.gradle
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
55
56
57
58
59
60
61
buildscript {
repositories {
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
// The following is only necessary if you want to use SNAPSHOT releases.
// maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.2'
classpath 'gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.14.0'
}
}
plugins {
id 'java-library'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.6'
}
apply from: 'gradle/mavenPublish.gradle'
group = 'com.gluonhq'
version = '0.0.2-SNAPSHOT'
mainClassName = 'com.gluonhq.strangefx/com.gluonhq.strange.ui.Main'
// mainClassName = 'com.gluonhq.strangefx/com.gluonhq.strangefx.demo.RenderDemo'
// mainClassName = 'com.gluonhq.strangefx/com.gluonhq.strange.simulator.local.LocalSimulator'
repositories {
mavenCentral()
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
maven {
url 'https://oss.sonatype.org/content/repositories/comgluonhq-1095'
}
}
javafx {
modules = [ 'javafx.controls' ]
version = "11.0.1"
}
test {
useJUnitPlatform()
testLogging {
events 'PASSED', 'FAILED', 'SKIPPED'
}
}
dependencies {
// compile 'de.jensd:fontawesomefx-materialicons:2.2.0-9'
// compile 'com.gluonhq:charm-cloudlink-client:4.4.4'
api 'com.gluonhq:strange:0.0.6'
api 'org.fxyz3d:fxyz3d:0.4.0'
// runtime 'com.gluonhq:charm-down-plugin-storage-desktop:3.6.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}