daniel
7 years ago
1 changed files with 72 additions and 0 deletions
@ -0,0 +1,72 @@ |
|||||||
|
|
||||||
|
apply plugin: 'java' |
||||||
|
tasks.withType(JavaCompile){ |
||||||
|
options.encoding = 'UTF-8' |
||||||
|
destinationDir = file('build/classes/6') |
||||||
|
} |
||||||
|
//指定构建的jdk版本 |
||||||
|
sourceCompatibility=1.5 |
||||||
|
def jarname="fr-third-9.0.jar" |
||||||
|
def classesDir='build/classes/6' |
||||||
|
def ftpreport='E:/ftp/share/report/' |
||||||
|
//解压lib下的jar到classes文件夹 |
||||||
|
jar{ |
||||||
|
baseName="fr-third_6-9.0" |
||||||
|
} |
||||||
|
|
||||||
|
def srcDir="." |
||||||
|
|
||||||
|
//设置源码路径 |
||||||
|
sourceSets{ |
||||||
|
main{ |
||||||
|
java{ |
||||||
|
srcDirs=[ |
||||||
|
"${srcDir}/fine-jackson/src", |
||||||
|
"${srcDir}/fine-jackson/resources" |
||||||
|
] |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
sourceSets.main.output.classesDir = file('build/classes/6') |
||||||
|
|
||||||
|
repositories{ |
||||||
|
mavenCentral() |
||||||
|
} |
||||||
|
|
||||||
|
//获取什么分支名 |
||||||
|
FileTree files =fileTree(dir:'./',include:'build.*.gradle') |
||||||
|
def buildDir=files[0].path.substring(0,files[0].path.lastIndexOf ('/')) |
||||||
|
def branchName=buildDir.substring(buildDir.lastIndexOf ('/')+1) |
||||||
|
|
||||||
|
//指定依赖 |
||||||
|
dependencies{ |
||||||
|
compile fileTree(dir:"${srcDir}/fine-jackson/lib",include:'**/*.jar') |
||||||
|
compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar') |
||||||
|
compile fileTree(dir:"../../finereport-lib-base/${branchName}",include:'**/*.jar') |
||||||
|
compile fileTree(dir:"../../finereport-lib-other/${branchName}",include:'**/*.jar') |
||||||
|
testCompile 'junit:junit:4.12' |
||||||
|
} |
||||||
|
|
||||||
|
//指明无法编译文件所在路径 |
||||||
|
def dataContent ={def dir -> |
||||||
|
copySpec{ |
||||||
|
from ("${dir}"){ |
||||||
|
exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html' |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
task copyFiles(type:Copy,dependsOn:'compileJava'){ |
||||||
|
copy{ |
||||||
|
println "------------------------------------------------copyfiles" |
||||||
|
with dataContent.call("${srcDir}/fine-jackson/src") |
||||||
|
with dataContent.call("${srcDir}/fine-jackson/resources") |
||||||
|
into "${classesDir}" |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
jar.dependsOn copyFiles |
Loading…
Reference in new issue