forked from paoding-code/paoding-rose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
97 lines (84 loc) · 2.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
group = "net.paoding"
version = "1.2-SNAPSHOT"
sourceCompatibility = 1.6
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
repositories {
maven {
url "http://repo.springsource.org/release"
}
mavenCentral()
}
uploadArchives {
repositories {
mavenDeployer {
mavenLocal()
}
}
}
dependencies {
}
jar {
manifest.attributes "Implementation-Title": "paoding-rose", "Implementation-Version": version
}
}
project(':rose') {
archivesBaseName = "paoding-rose"
dependencies {
compile project(':context')
testCompile "junit:junit:4.7"
compile "javax.servlet:servlet-api:2.4"
compile "commons-logging:commons-logging:1.1.1"
compile "commons-lang:commons-lang:2.6"
compile "commons-collections:commons-collections:3.2.1"
compile "org.springframework:spring-context:3.1.2.RELEASE"
compile "org.springframework:spring-web:3.1.2.RELEASE"
compile "log4j:log4j:1.2.17"
compile "javax.servlet:jsp-api:2.0"
compile "commons-fileupload:commons-fileupload:1.2.2"
compile "org.springframework:spring-webmvc:3.1.2.RELEASE"
testCompile "org.springframework:spring-mock:2.0.8"
compile "org.apache.velocity:velocity:1.7"
compile "org.apache.velocity:velocity-tools:2.0"
}
}
project(':context') {
archivesBaseName = "paoding-rose-context"
dependencies {
testCompile "junit:junit:4.7"
compile "javax.servlet:servlet-api:2.4"
compile "commons-logging:commons-logging:1.1.1"
compile "commons-lang:commons-lang:2.6"
compile "commons-collections:commons-collections:3.2.1"
compile "org.springframework:spring-context:3.1.2.RELEASE"
compile "org.springframework:spring-web:3.1.2.RELEASE"
}
}
project(':jade') {
archivesBaseName = "paoding-rose-jade"
dependencies {
compile project(':context')
testCompile "junit:junit:4.7"
compile "javax.servlet:servlet-api:2.4"
compile "commons-logging:commons-logging:1.1.1"
compile "commons-lang:commons-lang:2.6"
compile "commons-jexl:commons-jexl:1.1"
compile "commons-collections:commons-collections:3.2.1"
compile "org.springframework:spring-context:3.1.2.RELEASE"
compile "org.springframework:spring-jdbc:3.1.2.RELEASE"
testCompile "org.hsqldb:hsqldb:2.2.8"
}
}
project(':pipe') {
archivesBaseName = "paoding-rose-pipe"
dependencies {
compile project(':rose')
testCompile "junit:junit:4.7"
compile "javax.servlet:servlet-api:2.4"
compile "javax.servlet:jsp-api:2.0"
compile "com.metaparadigm:json-rpc:1.0"
}
}