forked from fanruan/demo-chart-pie
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.
26 lines
719 B
26 lines
719 B
sourceCompatibility = "1.8" |
|
targetCompatibility = "1.8" |
|
dependencies { |
|
//使用本地jar |
|
implementation fileTree(dir: 'lib', include: ['*.jar']) |
|
} |
|
|
|
//将下面两个文件夹的内容打包成为zip |
|
//这个不可以使用form /libs/*.*的通配符, |
|
//可以使用from指定具体的文件名 |
|
//将生成的zip输出到$buildDir下 |
|
task zip(type:Zip,dependsOn:["build"]){ |
|
from "$buildDir/libs" |
|
from "$projectDir/plugin.xml" |
|
destinationDir file("$buildDir") |
|
} |
|
//先清理再build |
|
build.mustRunAfter clean |
|
//控制build时包含哪些文件,排除哪些文件 |
|
processResources { |
|
// exclude everything |
|
// 用*.css没效果 |
|
// exclude '**/*.css' |
|
// except this file |
|
// include 'xx.xml' |
|
} |