-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (34 loc) · 832 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
39
40
41
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.9'
}
repositories {
jcenter()
mavenCentral()
maven { url 'http://sandec.bintray.com/repo' }
}
group 'io.github.proton'
version '1.0-SNAPSHOT'
javafx {
modules = [ 'javafx.controls' ]
}
dependencies {
compile 'org.slf4j:slf4j-simple:1.7.9'
compile 'org.pf4j:pf4j:3.2.0'
compile 'org.fxmisc.richtext:richtextfx:0.10.5'
compile 'org.eclipse.lsp4j:org.eclipse.lsp4j:0.9.0'
compile 'com.sandec:mdfx:0.1.6'
annotationProcessor 'org.pf4j:pf4j:3.2.0'
}
application {
mainClassName = 'io.github.proton.Proton'
}
jar {
manifest {
attributes 'Main-Class': 'io.github.proton.ui.Proton'
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}