-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (45 loc) · 1.09 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
42
43
44
45
46
47
48
49
50
51
apply plugin: 'java'
apply plugin: 'maven'
apply from: 'http://ivy.reallysi.com/ivy-repo/rsuite-community/repositories.gradle'
apply from: 'http://ivy.reallysi.com/ivy-repo/rsuite-community/std-plugin-tasks.gradle'
group = "rsuite-community"
project.buildDir = 'target'
configurations {
includeInJar {
transitive = false
}
}
dependencies {
compile ('rsi:rsuite-api:5.0.0') {
transitive=false
}
compile ('rsuite-community:rsuite-conf-utils-lib:0.0.1') {
transitive=false
}
compile ('rsuite-community:rsuite-message-props-lib:0.0.1') {
transitive=false
}
compile ('rsuite-community:rsuite-operation-lib:0.0.1') {
transitive=false
}
compile ('apache:commons-fileupload:1.2.1') {
transitive=false
}
compile ('apache:commons-io:1.4') {
transitive=false
}
compile ('apache:commons-lang:2.4') {
transitive=false
}
compile ('apache:commons-logging:1.1.1') {
transitive=false
}
compile ('org.json:org.json:2.0') {
transitive=false
}
configurations.compile.extendsFrom(configurations.includeInJar)
}
jar () {
baseName='rsuite-web-services-lib'
from configurations.includeInJar
}