forked from ifnoelse/pdf-bookmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (31 loc) · 845 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.8'
id 'org.beryx.jlink' version '2.12.0'
}
group 'com.ifnoelse'
version '1.0.7'
mainClassName = "com.ifnoelse.pdf.gui.Main"
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
sourceCompatibility = 11
repositories {
maven {
url "http://maven.aliyun.com/nexus/content/groups/public/"
}
}
javafx {
version = "11"
modules = [ 'javafx.controls' ]
}
jlink {
launcher {
name = 'pdf-bookmark'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile group: 'org.jsoup', name: 'jsoup', version: '1.10.2'
compile group: 'com.itextpdf', name: 'itextpdf', version: '5.5.13'
// compile group: 'org.bouncycastle', name: 'bcprov-jdk16', version: '1.46'
}