forked from AlexandreBrillant/Editix-xml-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (36 loc) · 1.55 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
plugins {
id "application"
}
repositories {
mavenCentral()
}
sourceSets {
main.java.srcDirs = ["src"]
main.resources.srcDirs = ["src"]
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
}
dependencies {
implementation fileTree(dir: "lib", include: ["**/*.jar"])
implementation group: "net.sf.jtidy", name: "jtidy", version: "r938"
implementation group: "org.apache.xmlgraphics", name: "batik-swing", version: "1.14"
implementation group: "commons-net", name: "commons-net", version: "3.8.0"
implementation group: "org.apache.xmlgraphics", name: "fop", version: "2.6"
implementation group: "jaxen", name: "jaxen", version: "1.2.0"
implementation group: "org.json", name: "json", version: "20210307"
implementation group: "msv", name: "isorelax", version: "20050913"
implementation group: "msv", name: "msv", version: "20050913"
implementation group: "org.apache.poi", name: "poi", version: "5.1.0"
implementation group: "org.apache.poi", name: "poi-ooxml", version: "5.1.0"
implementation group: "net.sf.saxon", name: "Saxon-HE", version: "9.5.1-8"
implementation group: "net.sf.saxon", name: "Saxon-HE", version: "9.5.1-8"
implementation group: "saxon", name: "saxon", version: "6.5.3"
implementation group: "org.swinglabs", name: "swingx", version: "1.6.1"
implementation group: "org.swinglabs", name: "swing-layout", version: "1.0.3"
implementation group: "org.relaxng", name: "trang", version: "20181222"
implementation group: "xerces", name: "xercesImpl", version: "2.12.1"
}
application {
mainClass = "com.japisoft.editix.main.Main"
}