|
|
|
@ -1,5 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
apply plugin: 'java' |
|
|
|
|
tasks.withType(JavaCompile){ |
|
|
|
|
options.encoding = 'UTF-8' |
|
|
|
|
destinationDir = file('build/classes/main') |
|
|
|
|
} |
|
|
|
|
//指定构建的jdk版本 |
|
|
|
|
sourceCompatibility=1.5 |
|
|
|
|
def jarname="fr-third-9.0.jar" |
|
|
|
|
def classesDir='build/classes/main' |
|
|
|
|
//解压lib下的jar到classes文件夹 |
|
|
|
|
jar{ |
|
|
|
|
baseName="fr-third-9.0" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//获取什么分支名 |
|
|
|
|
FileTree files =fileTree(dir:'./',include:'build.*.gradle') |
|
|
|
|
def buildDir=files[0].path.substring(0,files[0].path.lastIndexOf ('/')) |
|
|
|
@ -27,6 +41,9 @@ task unJar{
|
|
|
|
|
include(name:'aopalliance-1.0.jar') |
|
|
|
|
include(name:'aspectjweaver-1.8.4.jar') |
|
|
|
|
} |
|
|
|
|
fileset(dir:"${srcDir}/build/libs"){ |
|
|
|
|
include(name:"*.jar") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|