-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
38 lines (29 loc) · 866 Bytes
/
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
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.9'
}
group 'org.example'
version '0.6.2'
def moduleName = "markdown.editor.control.fx"
mainClassName = ""
javafx {
version = "11.0.2"
modules = [ 'javafx.base', 'javafx.graphics', 'javafx.controls' ]
}
repositories {
mavenCentral()
maven { url "https://sandec.jfrog.io/artifactory/repo" }
maven { url "https://dl.bintray.com/dukke/maven" }
}
dependencies {
implementation 'com.sandec:mdfx:0.2.3'
implementation 'org.fxmisc.richtext:richtextfx:0.10.6'
// implementation 'de.jensd:fontawesomefx-commons:11.0'
// implementation 'de.jensd:fontawesomefx-materialdesignfont:1.7.22-11'
implementation fileTree(dir: 'local-libs', include: '*.jar')
testImplementation 'org.jfxtras:jmetro:11.6.14'
}
test {
useJUnitPlatform()
}