1 Star 0 Fork 13

宝塔镇河妖/paoding-rose

forked from coraldane/paoding-rose 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 2.99 KB
一键复制 编辑 原始数据 按行查看 历史
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
group = "net.paoding"
version = "1.2"
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
}
}
task myTask << {
if (System.properties['love']) {
println "I love you! Gradle!"
}
}
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.3.1"
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"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/alecfan/paoding-rose.git
git@gitee.com:alecfan/paoding-rose.git
alecfan
paoding-rose
paoding-rose
master

搜索帮助