zhouping
5 years ago
8 changed files with 162 additions and 101 deletions
@ -0,0 +1,77 @@
|
||||
|
||||
apply plugin: 'java' |
||||
tasks.withType(JavaCompile){ |
||||
options.encoding = 'UTF-8' |
||||
destinationDir = file('build/classes/7') |
||||
} |
||||
|
||||
//源码版本 |
||||
sourceCompatibility=1.7 |
||||
//构建的class版本 |
||||
targetCompatibility=1.7 |
||||
|
||||
def jarname="fine-third-10.0.jar" |
||||
def classesDir='build/classes/7' |
||||
// def ftpreport='E:/ftp/share/report/' |
||||
//解压lib下的jar到classes文件夹 |
||||
jar{ |
||||
baseName="fine-third_7-10.0" |
||||
} |
||||
|
||||
def srcDir="." |
||||
|
||||
//设置源码路径 |
||||
sourceSets{ |
||||
main{ |
||||
java{ |
||||
srcDirs=[ |
||||
"${srcDir}/fine-ehcache/src" |
||||
] |
||||
} |
||||
} |
||||
|
||||
} |
||||
sourceSets.main.output.classesDir = file('build/classes/7') |
||||
|
||||
repositories{ |
||||
mavenCentral() |
||||
maven { url "http://mvn.finedevelop.com/repository/maven-public/" } |
||||
} |
||||
|
||||
//获取什么分支名 |
||||
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 MVN_BRANCH = branchVariable.toUpperCase() |
||||
|
||||
//指定依赖 |
||||
dependencies{ |
||||
compile fileTree(dir:"${srcDir}/fine-ehcache/lib",include:'**/*.jar') |
||||
// @branch - 分支信息 |
||||
// compile "com.fr.third:fine-third:10.0-${MVN_BRANCH}-SNAPSHOT" |
||||
// 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-ehcache/src") |
||||
with dataContent.call("${srcDir}/fine-ehcache/recources") |
||||
into "${classesDir}" |
||||
} |
||||
} |
||||
|
||||
jar.dependsOn copyFiles |
Loading…
Reference in new issue