1 Star 0 Fork 40

最终幻想007 / bboss

forked from bboss / bboss 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 3.87 KB
一键复制 编辑 原始数据 按行查看 历史
bboss 提交于 2016-12-14 20:12 . 增加阿里云中央库配置依赖
configure(allprojects) { project ->
group = PROJ_GROUP
version = PROJ_VERSION
ext.jacksonversion = jacksonversion
ext.mongodbversion = mongodbversion
apply plugin: "java"
apply plugin: "maven-publish"
apply plugin: "eclipse"
apply plugin: "idea"
apply plugin: "signing"
apply plugin: "maven"
eclipse {
jdt {
//if you want to alter the java versions (by default they are configured with gradle java plugin settings):
sourceCompatibility = SOURCE_COMPILER_LEVEL
targetCompatibility = TARGET_COMPILER_LEVEL
javaRuntimeName = "../../org.eclipse.jdt.launching.JRE_CONTAINER"
}
}
tasks.withType(JavaCompile) {
sourceCompatibility = SOURCE_COMPILER_LEVEL
targetCompatibility = TARGET_COMPILER_LEVEL
options.encoding = 'UTF-8'
}
tasks.withType(Javadoc) {
sourceCompatibility = JAVADOC_SOURCE_LEVEL
targetCompatibility = JAVADOC_COMPILER_LEVEL
options.encoding = 'UTF-8'
// disable the crazy super-strict doclint tool in Java 8
// noinspection SpellCheckingInspection
if (JavaVersion.current().isJava8Compatible()) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
jar {
manifest {
attributes (
'Implementation': version,
'Specification-Version': version,
'Implementation-Vendor': 'bbossgroups',
'Implementation-ProductID': project.name,
'Compile-Timestamp': new Date().format('yyyy-MM-dd HH:mm:ss'),
'Compile-User': DEVELOPER_NAME
)
}
}
dependencies {
testCompile 'junit:junit:4.12'
}
repositories {
mavenLocal()
maven {
url "http://maven.aliyun.com/nexus/content/groups/public"
}
mavenCentral()
}
if(project.getProperty('skipTest').equals("true"))
{
compileTestJava.enabled=false
processTestResources.enabled=false
testClasses.enabled = false
test.enabled = false
}
}
configure(subprojects) { subproject ->
task sourcesJar(type: Jar) {
classifier = "sources"
from sourceSets.main.allJava
}
task javaDocJar(type: Jar, dependsOn: javadoc) {
classifier = "javadoc"
from javadoc.destinationDir
}
artifacts {
archives sourcesJar, javaDocJar
}
ext.uploadtocenter=uploadArchivesToMavenCenter.equals("true")
if(uploadtocenter)
{
signing {
//required { uploadtocenter }
sign configurations.archives
}
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: sonatype_url) {
authentication(userName: sonatype_username, password: sonatype_password)
}
pom.project {
name project.name
packaging 'jar'
// optionally artifactId can be defined here
description PROJ_DESCRIPTION
url PROJ_WEBSITEURL
scm {
connection scm_connection
developerConnection scm_developerConnection
url scm_url
}
licenses {
license {
name PROJ_LICENCE_NAME
url PROJ_LICENCE_URL
}
}
developers {
developer {
id DEVELOPER_ID
name DEVELOPER_NAME
email DEVELOPER_EMAIL
}
}
}//pom
}//mavenDeployer
}//repositories
}//uploadArchives
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourcesJar
artifact javaDocJar
}
}
repositories {
/**maven {
url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
credentials {
username ""
password ""
}
}*/
mavenLocal()
}
}
}
Java
1
https://gitee.com/alexguo/bboss.git
git@gitee.com:alexguo/bboss.git
alexguo
bboss
bboss
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891