帆软使用的第三方框架。
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.

73 lines
1.4 KiB

7 years ago
apply plugin: 'java'
tasks.withType(JavaCompile){
options.encoding = 'UTF-8'
destinationDir = file('build/classes/main')
}
7 years ago
//指定构建的jdk版本
7 years ago
sourceCompatibility=1.5
7 years ago
def jarname="fine-third-10.0.jar"
7 years ago
def classesDir='build/classes/main'
7 years ago
//解压lib下的jar到classes文件夹
7 years ago
jar{
7 years ago
baseName="fine-third-10.0"
7 years ago
}
7 years ago
repositories {
mavenCentral()
maven { url "http://mvn.finedevelop.com/repository/maven-public/" }
}
7 years ago
sourceSets{
main{
java{
srcDirs=[]
}
}
}
7 years ago
//获取什么分支名
7 years ago
FileTree files =fileTree(dir:'./',include:'build.*.gradle')
7 years ago
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)
7 years ago
def srcDir="."
7 years ago
configurations {
thirdjar
}
7 years ago
dependencies {
7 years ago
thirdjar "com.fr.third:fine-third:10.0-FEATURE-SNAPSHOT"
7 years ago
testCompile 'junit:junit:4.12'
}
7 years ago
7 years ago
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)
7 years ago
}
}
7 years ago
7 years ago
}
7 years ago
jar.dependsOn unpack
7 years ago