apply plugin: 'java' tasks.withType(JavaCompile){ options.encoding = 'UTF-8' destinationDir = file('build/classes/8') } //源码版本 sourceCompatibility=1.8 //构建的class版本 targetCompatibility=1.8 def jarname="fine-third-10.0.jar" def classesDir='build/classes/8' // def ftpreport='E:/ftp/share/report/' //解压lib下的jar到classes文件夹 jar{ baseName="fine-third_8-10.0" } def srcDir="." //设置源码路径 sourceSets{ main{ java{ srcDirs=[ "${srcDir}/fine-ehcache/src/main/java", ] } } } sourceSets.main.output.classesDir = file('build/classes/8') repositories{ mavenCentral() maven { url "http://mvn.finedevelop.com/repository/maven-public/" } maven { url "http://mvn.finedevelop.com/repository/fanruan/" } } //获取什么分支名 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() def indexV = branchName.indexOf( "%2F"); if(indexV != -1){ version= branchName.substring(indexV+3, branchName.length()).toUpperCase() } else { version= branchName } // 主体代码与essential的对应关系配置在TeamCity String essentialVersion = findProperty("essentialVersion") //指定依赖 dependencies{ compileOnly "com.fr.essential:fine-essential:${essentialVersion}" compile fileTree(dir:"${srcDir}/fine-ehcache/lib",include:'**/*.jar') compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar') compile fileTree(dir:System.getenv("JAVA_HOME"),include:"lib/tools.jar") compile group: "javax.servlet", name: "javax.servlet-api", version: "3.0.1" 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/main/java") with dataContent.call("${srcDir}/fine-ehcache/src/main/recources") into "${classesDir}" } } jar.dependsOn copyFiles