forked from fanruan/report-starter-latest
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.
62 lines
1.7 KiB
62 lines
1.7 KiB
/* |
|
* This file was generated by the Gradle 'init' task. |
|
*/ |
|
//打包直接执行zip命令 Gradle -> Tasks -> other -> zip |
|
dependencies { |
|
implementation fileTree(dir: 'lib', include: ['*.jar']) |
|
} |
|
ant.importBuild("ant_build.xml") |
|
//定义ant变量 |
|
ant.projectDir = projectDir |
|
ant.references["compile.classpath"] = ant.path { |
|
fileset(dir: "lib", includes: '*.jar') |
|
fileset(dir: "$rootDir/webroot/WEB-INF/lib", includes: '*.jar') |
|
fileset(dir: ".",includes:"**/*.jar" ) |
|
} |
|
//clean -> classes -> copyFiles -> compile_javas(加密) -> preJar -> makeJar->copyFile->zip |
|
classes.dependsOn('clean') |
|
|
|
task copyFiles(type: Copy,dependsOn: 'classes'){ |
|
from "$buildDir/classes/java/main" |
|
from "$buildDir/resources/main" |
|
into "$projectDir/classes" |
|
} |
|
|
|
task preJar(type:Copy,dependsOn: 'compile_javas'){ |
|
from "$projectDir/classes" |
|
into "$buildDir/classes/java/main" |
|
doLast(){ |
|
delete file("$projectDir/classes") |
|
} |
|
} |
|
|
|
task makeJar(type: Jar,dependsOn: preJar){ |
|
from fileTree(dir:"$buildDir/classes/java/main") //包含assets文件 |
|
destinationDir = file("$buildDir/libs") |
|
} |
|
|
|
task copyFile(type: Copy,dependsOn: ["makeJar"]){ |
|
from "$buildDir/libs" |
|
from "$projectDir/lib" |
|
from "$projectDir/plugin.xml" |
|
into file("$buildDir/temp/fr-"+"$project.name"+"-$project.version") |
|
} |
|
|
|
task zip(type:Zip,dependsOn:["copyFile"]){ |
|
from "$buildDir/temp" |
|
destinationDir file("$buildDir/install") |
|
//生成的文件名: baseName-appendix-0.0.1.zip |
|
// baseName 'baseName' |
|
// appendix 'appendix' |
|
// version '0.0.1' |
|
} |
|
|
|
|
|
//控制build时包含哪些文件,排除哪些文件 |
|
processResources { |
|
// exclude everything |
|
// 用*.css没效果 |
|
// exclude '**/*.css' |
|
// except this file |
|
// include 'xx.xml' |
|
}
|
|
|