|
|
|
|
|
|
|
tasks.withType(JavaCompile){
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
}
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "http://www.eveoh.nl/files/maven2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "nl.eveoh:gradle-aspectj:1.2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ext.aspectjVersion = '1.7.4'
|
|
|
|
apply plugin: 'aspectj'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
//指定构建的jdk版本
|
|
|
|
sourceCompatibility=1.8
|
|
|
|
//指定生成jar包的版本
|
|
|
|
version='8.0'
|
|
|
|
|
|
|
|
def srcDir="."
|
|
|
|
|
|
|
|
//对生成的jar包进行重命名
|
|
|
|
|
|
|
|
jar{
|
|
|
|
baseName='fr-designer-chart'
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets{
|
|
|
|
main{
|
|
|
|
java{
|
|
|
|
srcDirs=["${srcDir}/src"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
FileTree files =fileTree(dir:'./',include:'build.*.gradle')
|
|
|
|
def buildDir=files[0].path.substring(0,files[0].path.lastIndexOf ('\\'))
|
|
|
|
buildDir=buildDir.substring(0,buildDir.lastIndexOf ('\\'))
|
|
|
|
def branchName=buildDir.substring(buildDir.lastIndexOf ('\\')+1)
|
|
|
|
|
|
|
|
//指定外部依赖
|
|
|
|
dependencies{
|
|
|
|
compile fileTree(dir:"../../../finereport-lib-stable/${branchName}",include:'**/*.jar')
|
|
|
|
compile fileTree(dir:'../../../',include:"finereport-*-stable/${branchName}/**/build/libs/*.jar")
|
|
|
|
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
}
|
|
|
|
//将非.java 文件复制到classes文件夹下参与打包
|
|
|
|
task copyFile(type:Copy,dependsOn:compileJava){
|
|
|
|
copy{
|
|
|
|
from ("${srcDir}/src"){
|
|
|
|
exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html'
|
|
|
|
|
|
|
|
}
|
|
|
|
into 'build/classes/main'
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//压缩项目中的js文件
|
|
|
|
task compressJS{
|
|
|
|
ant.taskdef(name:'yuicompress',classname:'com.yahoo.platform.yui.compressor.YUICompressTask'){
|
|
|
|
classpath {
|
|
|
|
fileset(dir:'../../../finereport-lib4build-stable',includes:'**/*.jar')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ant.yuicompress(linebreak:"500",warn:"false", munge:"yes",preserveallsemicolons:"false",charset:"utf-8",encoding:"utf-8",outputfolder:'build/classes/main'){
|
|
|
|
fileset (dir:"${srcDir}/src"){
|
|
|
|
include (name:'**/*.js')
|
|
|
|
include (name:'**/*.css')
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jar.dependsOn compressJS
|
|
|
|
|