-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle.kts
67 lines (61 loc) · 2.44 KB
/
build.gradle.kts
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
62
63
64
65
66
67
/*
* The MIT License (MIT)
*
* Copyright (c) 2020 Lachlan Dowding
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
plugins {
`java-library`
}
java {
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6
}
repositories {
mavenCentral()
}
dependencies {
api("com.googlecode.htmlcompressor:htmlcompressor:1.5.2")
api("com.sun.activation:javax.activation:1.2.0")
api("com.sun.mail:javax.mail:1.6.2")
api("com.sun.xml.bind:jaxb-impl:2.3.2")
api("com.sun.xml.ws:jaxws-ri:2.3.2-1")
api("javax.xml.bind:jaxb-api:2.3.1")
api("org.apache.axis2:axis2-kernel:1.7.9")
api("org.apache.commons:commons-collections4:4.1")
api("org.apache.commons:commons-compress:1.12")
api("org.apache.commons:commons-csv:1.4")
api("org.apache.poi:poi-ooxml-schemas:3.17")
api("org.apache.poi:poi-ooxml:3.17")
api("org.apache.poi:poi:3.17")
api("org.apache.santuario:xmlsec:1.5.8")
api("org.glassfish:javax.json:1.1.4")
api("org.hjson:hjson:2.1.1")
api("org.jscience:jscience:4.3.1")
api("org.unbescape:unbescape:1.1.6.RELEASE")
api("org.yaml:snakeyaml:1.23")
api("oro:oro:2.0.8")
api(files("libs/wm-isclient.jar", "libs/wm-isserver.jar", "libs/wm-scg-security.jar", "libs/wm-scg-core.jar"))
testImplementation("junit:junit:4.13.1")
testImplementation("org.hamcrest:hamcrest-all:1.3")
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}