1 Star 0 Fork 64

usiter/sequence

forked from 响娃/sequence 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 3.50 KB
一键复制 编辑 原始数据 按行查看 历史
响娃 提交于 2016-06-28 23:03 . sequence
allprojects {
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'maven'
idea {
module {
downloadSources=true
downloadJavadoc=true
}
}
configurations {
provided
compile.extendsFrom provided
deployerJars
}
uploadArchives {
repositories {
mavenDeployer {
configuration = configurations.deployerJars
snapshotRepository(url: "http://mvnrepository.51xianqu.com/nexus/content/repositories/snapshots/") {
authentication(userName: "admin", password: "shandiangounexus51")
}
repository(url:"http://mvnrepository.51xianqu.com/nexus/content/repositories/releases/") {
authentication(userName: "admin", password: "shandiangounexus51")
}
}
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
repositories {
maven {
name 'sdg-repository'
url 'http://mvnrepository.51xianqu.com/nexus/content/groups/public/'
}
mavenLocal()
}
configurations.all {
// check for updates every build
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
group 'com.oschina'
version '1.0.0-SNAPSHOT'
sourceCompatibility = 1.7
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
}
ext {
springVersion='3.2.13.RELEASE'
}
subprojects {
dependencies {
deployerJars "org.apache.maven.wagon:wagon-http:2.2"
testCompile "junit:junit:4.11"
// compile "junit:junit:4.11"
//
// compile localGroovy()
//
// compile "org.apache.commons:commons-lang3:3.1"
// compile "org.springframework:spring-context:${springVersion}"
// compile "org.springframework:spring-context-support:${springVersion}"
// compile "org.springframework:spring-core:${springVersion}"
// compile "org.springframework:spring-beans:${springVersion}"
// compile "org.springframework:spring-web:${springVersion}"
// compile "org.springframework:spring-webmvc:${springVersion}"
// compile "org.springframework:spring-tx:${springVersion}"
// compile "org.springframework:spring-jdbc:${springVersion}"
// compile "org.springframework:spring-test:${springVersion}"
// compile ('org.springframework.data:spring-data-redis:1.4.2.RELEASE') {
// exclude group:'org.springframework'
// }
// compile 'redis.clients:jedis:2.6.3'
//
// compile 'com.alibaba:fastjson:1.2.6'
// compile "org.slf4j:slf4j-api:${slf4jVersion}"
// compile "org.slf4j:log4j-over-slf4j:${slf4jVersion}"
// compile "org.slf4j:jcl-over-slf4j:${slf4jVersion}"
//
// compile "org.codehaus.jackson:jackson-core-asl:${jacksonVersion}"
// compile "org.codehaus.jackson:jackson-mapper-asl:${jacksonVersion}"
// compile "com.fasterxml.jackson.core:jackson-core:2.4.4"
// compile "com.fasterxml.jackson.core:jackson-databind:2.4.4"
// compile "org.quartz-scheduler:quartz:2.2.1"
//
// compile "com.sdg:cloudstack-monitor:0.1.9"
//
// compile "com.shangou:config-center-client:1.2.2"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/peacher/sequence.git
git@gitee.com:peacher/sequence.git
peacher
sequence
sequence
master

搜索帮助