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

81 lines
2.1 KiB

apply plugin: 'java'
tasks.withType(JavaCompile){
options.encoding = 'UTF-8'
destinationDir = file('build/classes/7')
}
//源码版本
sourceCompatibility=11
//构建的class版本
targetCompatibility=11
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=[
]
}
}
}
def resourceDirs = [
]
sourceSets.main.java.outputDir = file('build/classes/7')
sourceSets.main.resources.srcDirs = resourceDirs
sourceSets.main.resources.excludes = ['**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html']
sourceSets.main.output.resourcesDir = file('build/resource/7')
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}/build/libs/",include:'**/*.jar')
compile fileTree(dir:System.getenv("JAVA_HOME"),include:"lib/tools.jar")
compile group: "com.fr.third.server", name: "servlet-api", version: "3.0"
testCompile 'junit:junit:4.12'
}
//指明无法编译文件所在路径
def dataContent = { def dir ->
copySpec{
from ("${dir}"){
exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html'
}
}
}