You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
apply plugin: 'java'
|
|
|
|
tasks.withType(JavaCompile){
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
destinationDir = file('build/classes/main')
|
|
|
|
}
|
|
|
|
//指定构建的jdk版本
|
|
|
|
sourceCompatibility=1.5
|
|
|
|
def jarname="fine-third-10.0.jar"
|
|
|
|
def classesDir='build/classes/main'
|
|
|
|
//解压lib下的jar到classes文件夹
|
|
|
|
jar{
|
|
|
|
baseName="fine-third-10.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "http://mvn.finedevelop.com/repository/maven-public/" }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sourceSets{
|
|
|
|
main{
|
|
|
|
java{
|
|
|
|
srcDirs=[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//获取什么分支名
|
|
|
|
FileTree files =fileTree(dir:'./',include:'build.*.gradle')
|
|
|
|
def buildDir=files[0].path.substring(0,files[0].path.lastIndexOf (java.io.File.separator))
|
|
|
|
def branchName=buildDir.substring(buildDir.lastIndexOf (java.io.File.separator)+1)
|
|
|
|
def srcDir="."
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
thirdjar
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
thirdjar "com.fr.third:fine-third:10.0-FEATURE-SNAPSHOT"
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
task unpack(type:Copy) {
|
|
|
|
delete classesDir
|
|
|
|
destinationDir=file(classesDir)
|
|
|
|
println(configurations.thirdjar.singleFile)
|
|
|
|
from {
|
|
|
|
zipTree(configurations.thirdjar.singleFile)
|
|
|
|
}
|
|
|
|
from {
|
|
|
|
zipTree("fine-quartz/lib/c3p0-0.9.1.1.jar")
|
|
|
|
}
|
|
|
|
|
|
|
|
from {
|
|
|
|
zipTree("fine-spring/lib/aopalliance-1.0.jar")
|
|
|
|
}
|
|
|
|
from {
|
|
|
|
zipTree("fine-poi/lib/curvesapi-1.03.jar")
|
|
|
|
}
|
|
|
|
fileTree(dir:"build/libs",include:"**/*.jar").each {
|
|
|
|
File file -> from {
|
|
|
|
zipTree(file)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
jar.dependsOn unpack
|
|
|
|
|