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

94 lines
2.6 KiB

apply plugin: 'java'
tasks.withType(JavaCompile){
options.encoding = 'UTF-8'
destinationDir = file('build/classes/3')
}
//源码版本
sourceCompatibility=1.8
//构建的class版本
targetCompatibility=1.8
def jarname="fine-third-10.0.jar"
def classesDir='build/classes/3'
//解压lib下的jar到classes文件夹
jar{
baseName="fine-third_3-10.0"
}
def srcDir="."
//设置源码路径
sourceSets{
main{
java{
srcDirs=[
"${srcDir}/fine-itext/src/main/java",
"${srcDir}/fine-jedis/src/main/java",
"${srcDir}/fine-jboss-logging/src/main/java"
]
}
}
}
sourceSets.main.output.classesDir = file('build/classes/3')
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-jboss-logging/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-itext/src/main/java")
with dataContent.call("${srcDir}/fine-itext/src/main/resources")
with dataContent.call("${srcDir}/fine-jedis/src/main/java")
with dataContent.call("${srcDir}/fine-jedis/src/main/resources")
with dataContent.call("${srcDir}/fine-jboss-logging/src/main/java")
with dataContent.call("${srcDir}/fine-jboss-logging/src/main/resources")
into "${classesDir}"
}
}
jar.dependsOn copyFiles