sunmondong
8 years ago
8 changed files with 4 additions and 309 deletions
@ -1,86 +0,0 @@ |
|||||||
apply plugin: "java" |
|
||||||
tasks.withType(JavaCompile){ |
|
||||||
options.encoding = "UTF-8" |
|
||||||
} |
|
||||||
sourceCompatibility=1.7 |
|
||||||
def basicDir="../../" |
|
||||||
def libDir="${basicDir}/finereport-lib-stable" |
|
||||||
//获取什么分支名 |
|
||||||
FileTree files =fileTree(dir:"./",include:"build.gradle") |
|
||||||
def buildDir=files[0].path.substring(0,files[0].path.lastIndexOf ("\\")) |
|
||||||
def branchName=buildDir.substring(buildDir.lastIndexOf ("\\")+1) |
|
||||||
|
|
||||||
task appletJar<<{ |
|
||||||
|
|
||||||
ant{ |
|
||||||
mkdir(dir:"${libDir}/tmp-${branchName}") |
|
||||||
mkdir(dir:"build/classes/") |
|
||||||
copy(todir:"build/classes/"){ |
|
||||||
fileset(dir:"${basicDir}/finereport-core-stable/${branchName}/build/classes/main") |
|
||||||
|
|
||||||
fileset(dir:"${basicDir}/finereport-chart-stable/${branchName}/build/classes/main") |
|
||||||
|
|
||||||
fileset(dir:"${basicDir}/finereport-report-stable/${branchName}/build/classes/main") |
|
||||||
|
|
||||||
fileset(dir:"${basicDir}/finereport-platform-stable/${branchName}/build/classes/main") |
|
||||||
|
|
||||||
fileset(dir:"${basicDir}/finereport-performance-stable/${branchName}/build/classes/main") |
|
||||||
|
|
||||||
} |
|
||||||
unjar(src:"${libDir}/3rd.jar",dest:"${libDir}/tmp-${branchName}") |
|
||||||
unjar(src:"${libDir}/servlet-api.jar",dest:"${libDir}/tmp-${branchName}") |
|
||||||
jar(jarfile:"build/libs/fr-applet-8.0.jar"){ |
|
||||||
fileset(dir:"build/classes"){ |
|
||||||
exclude(name:"*.*") |
|
||||||
exclude(name:"bin/*.*") |
|
||||||
exclude(name:"classes/**") |
|
||||||
exclude(name:"com/fr/schedule/**") |
|
||||||
exclude(name:"com/fr/cell/**") |
|
||||||
exclude(name:"com/fr/dialog/**") |
|
||||||
exclude(name:"com/fr/view/**") |
|
||||||
exclude(name:"com/fr/web/**") |
|
||||||
exclude(name:"com/fr/fs/**") |
|
||||||
exclude(name:"com/fr/design/**") |
|
||||||
exclude(name:"com/fr/start/**") |
|
||||||
exclude(name:"com/fr/process/**") |
|
||||||
} |
|
||||||
fileset(dir:"${libDir}/tmp-${branchName}"){ |
|
||||||
include(name:"javax/mail/**") |
|
||||||
include(name:"javax/servlet/**") |
|
||||||
include(name:"org/freehep/**") |
|
||||||
include(name:"com/fr/third/JAI/**") |
|
||||||
include(name:"com/fr/third/antlr/**") |
|
||||||
include(name:"com/fr/third/javax/**") |
|
||||||
include(name:"com/sun/xml/**") |
|
||||||
include(name:"javax/xml/**") |
|
||||||
|
|
||||||
} |
|
||||||
fileset(dir:"build/classes"){ |
|
||||||
include(name:"com/fr/web/*.class") |
|
||||||
include(name:"com/fr/web/attr/*.class") |
|
||||||
} |
|
||||||
} |
|
||||||
delete(dir:"${libDir}/tmp-${branchName}") |
|
||||||
def jdk6home= "D:/FineReport/develop/java/jdk1.6u35" |
|
||||||
def keystore="frapplet.store" |
|
||||||
def keycert="fr.cert" |
|
||||||
def keypassword="123456" |
|
||||||
def keyalias="fr" |
|
||||||
|
|
||||||
exec(executable:"${jdk6home}/bin/keytool"){ |
|
||||||
arg(line:"-genkey -dname "CN=FineReport L=NanJing C=China" -keystore ${keystore} -alias ${keyalias} -validity 3650 -storepass ${keypassword}") |
|
||||||
} |
|
||||||
exec(executable:"${jdk6home}/bin/keytool"){ |
|
||||||
arg(line:"-export -keystore ${keystore} -alias ${keyalias} -file ${keycert} -storepass ${keypassword}") |
|
||||||
} |
|
||||||
|
|
||||||
exec(executable:"${jdk6home}/bin/jarsigner"){ |
|
||||||
arg(line:"-keystore ${keystore} -storepass ${keypassword} 'build/libs/fr-applet-8.0.jar' ${keyalias}") |
|
||||||
} |
|
||||||
delete(file:"${keystore}") |
|
||||||
delete(file:"${keycert}") |
|
||||||
delete(dir:"build/classes") |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
} |
|
@ -1,70 +0,0 @@ |
|||||||
|
|
||||||
apply plugin: 'java' |
|
||||||
tasks.withType(JavaCompile){ |
|
||||||
options.encoding = 'UTF-8' |
|
||||||
} |
|
||||||
//指定构建的jdk版本 |
|
||||||
sourceCompatibility=1.8 |
|
||||||
//指定生成jar包版本 |
|
||||||
version='8.0' |
|
||||||
//生成jar包重命名 |
|
||||||
jar{ |
|
||||||
baseName='fr-designer-core' |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
def srcDir="." |
|
||||||
|
|
||||||
//指定源码路径 |
|
||||||
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',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 |
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,66 +0,0 @@ |
|||||||
|
|
||||||
apply plugin: 'java' |
|
||||||
tasks.withType(JavaCompile){ |
|
||||||
options.encoding = 'UTF-8' |
|
||||||
} |
|
||||||
//指定构建的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',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 |
|
||||||
|
|
@ -1,83 +0,0 @@ |
|||||||
|
|
||||||
apply plugin: 'java' |
|
||||||
tasks.withType(JavaCompile){ |
|
||||||
options.encoding = 'UTF-8' |
|
||||||
} |
|
||||||
//指定构建的jdk版本 |
|
||||||
sourceCompatibility=1.8 |
|
||||||
//指定生成的jar包版本 |
|
||||||
version='8.0' |
|
||||||
|
|
||||||
def srcDir="." |
|
||||||
|
|
||||||
|
|
||||||
//指明生成jar包的名字 |
|
||||||
jar{ |
|
||||||
baseName='fr-designer-report' |
|
||||||
} |
|
||||||
//源码所在位置 |
|
||||||
sourceSets{ |
|
||||||
main{ |
|
||||||
java{ |
|
||||||
srcDirs=["${srcDir}/src", |
|
||||||
"${srcDir}/../designer/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' |
|
||||||
} |
|
||||||
|
|
||||||
//指明无法编译文件所在路径 |
|
||||||
def dataContent ={def dir -> |
|
||||||
copySpec{ |
|
||||||
from ("${dir}"){ |
|
||||||
exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
//将非.java文件复制到classes文件夹下 参与打包 |
|
||||||
task copyFile(type:Copy,dependsOn:compileJava){ |
|
||||||
copy{ |
|
||||||
with dataContent.call("${srcDir}/src") |
|
||||||
with dataContent.call("${srcDir}/../designer/src") |
|
||||||
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') |
|
||||||
|
|
||||||
} |
|
||||||
fileset (dir:"${srcDir}/../designer/src"){ |
|
||||||
include (name:'**/*.js') |
|
||||||
include (name:'**/*.css') |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
||||||
} |
|
||||||
jar.dependsOn compressJS |
|
||||||
|
|
Loading…
Reference in new issue