-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
32 lines (27 loc) · 980 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
plugins {
id 'war'
}
version = "1.0"
defaultTasks 'clean', 'build'
project.webAppDirName = 'WebContent'
repositories {
mavenCentral()
}
dependencies {
providedCompile group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
implementation group: 'commons-logging', name: 'commons-logging', version: '1.1.3'
implementation group: 'commons-io', name: 'commons-io', version: '1.4'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.5'
implementation group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.4.9'
implementation group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.5.5'
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.3'
implementation group: 'org.json', name: 'json', version: '20180130'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
war {
archiveName '../../../source/target/modresorts-1.0.war'
}