代码拉取完成,页面将自动刷新
allprojects {
apply plugin: 'maven'
apply plugin: 'idea'
apply plugin: 'eclipse'
group = 'com.googlecode.d2j'
version = System.getProperty('GITHUB_REF_NAME', '2.x').replaceAll('[/ ]','-')
}
defaultTasks('clean','distZip')
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.8
targetCompatibility = 1.8
task packageSources(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts.archives packageSources
repositories {
mavenCentral()
google()
}
// == support provided scope
configurations {
provided
}
sourceSets {
main { compileClasspath += configurations.provided }
test {
compileClasspath += configurations.provided
}
}
// == end
[compileJava, compileTestJava]*.options.collect {options ->options.encoding = 'UTF-8'}
dependencies {
testCompile group: 'junit', name: 'junit', version:'4.11'
compile fileTree(dir: 'libs', include: '*.jar')
}
jar {
manifest {
attributes("Implementation-Title": project.name,
"Implementation-Version": project.version,
"Build-Time": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
"Revision":"${getRevision()}",
"Build-Number": System.env.BUILD_NUMBER?System.env.BUILD_NUMBER:"-1",
)
}
from (project.parent.projectDir) {
include 'NOTICE.txt'
include 'LICENSE.txt'
into('META-INF')
}
}
}
def getRevision() {
if (System.env.BUILD_REVISION) {
return System.env.BUILD_REVISION
}
if (System.env.GIT_REVISION) {
return System.env.GIT_REVISION
}
if (System.env.MERCURIAL_REVISION) {
System.env.MERCURIAL_REVISION
}
def ver = null;
try {
ver = 'git rev-parse --short HEAD'.execute().text.trim()
} catch (e) {
// ignore
}
if (!ver) {
try {
ver = 'hg id -i -b -t'.execute().text.split(' ')[0];
} catch (e) {
// ignore
}
}
if (!ver) {
ver = "HEAD"
}
return ver
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。