daniel 7 years ago
parent
commit
3a7efd2bcc
  1. 1
      build.third.gradle
  2. 34
      build.third_step0.gradle
  3. 69
      build.third_step1.gradle
  4. 66
      build.third_step2.gradle
  5. 73
      build.third_step3.gradle
  6. 68
      build.third_step4.gradle
  7. 68
      build.third_step5.gradle

1
build.third.gradle

@ -52,6 +52,7 @@ dependencies{
compile fileTree(dir:"${srcDir}/fine-spring/lib",include:'**/*.jar') compile fileTree(dir:"${srcDir}/fine-spring/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/fine-jboss-logging/lib",include:'**/*.jar') compile fileTree(dir:"${srcDir}/fine-jboss-logging/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/fine-hibernate/lib",include:'**/*.jar') compile fileTree(dir:"${srcDir}/fine-hibernate/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-base/${branchName}",include:'**/*.jar') compile fileTree(dir:"../../finereport-lib-base/${branchName}",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-other/${branchName}",include:'**/*.jar') compile fileTree(dir:"../../finereport-lib-other/${branchName}",include:'**/*.jar')
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'

34
build.third_step0.gradle

@ -0,0 +1,34 @@
//»ñȡʲô·ÖÖ§Ãû
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)
def srcDir="."
task unJar{
ant{
delete(dir:"build")
mkdir(dir:"build/classes/main")
println "------------------------------------------------unjar"
unjar(dest:"build/classes/main"){
fileset(dir:"../../finereport-lib-base/${branchName}"){
include(name:'3rd.jar')
}
fileset(dir:"../../finereport-lib-other/${branchName}"){
include(name:"batik-all-1.9.jar")
include(name:'json.jar')
}
fileset(dir:"${srcDir}/fine-poi/lib"){
include(name:'**/*.jar')
}
fileset(dir:"${srcDir}/fine-spring/lib"){
include(name:'aopalliance-1.0.jar')
include(name:'aspectjweaver-1.8.4.jar')
}
}
}
}

69
build.third_step1.gradle

@ -0,0 +1,69 @@
apply plugin: 'java'
tasks.withType(JavaCompile){
options.encoding = 'UTF-8'
}
//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"
}
def srcDir="."
//
sourceSets{
main{
java{
srcDirs=[
"${srcDir}/fine-poi/src",
"${srcDir}/fine-quartz/src"
]
}
}
}
repositories{
mavenCentral()
}
//
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)
//
dependencies{
compile fileTree(dir:"${srcDir}/fine-poi/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/fine-quartz/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-base/${branchName}",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-other/${branchName}",include:'**/*.jar')
testCompile 'junit:junit:4.12'
}
//
def dataContent ={def dir ->
copySpec{
from ("${dir}"){
exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html'
}
}
}
task copyFiles(type:Copy,dependsOn:'compileJava'){
copy{
println "------------------------------------------------copyfiles"
with dataContent.call("${srcDir}/fine-poi/src")
with dataContent.call("${srcDir}/fine-quartz/src")
into "${classesDir}"
}
}
jar.dependsOn copyFiles

66
build.third_step2.gradle

@ -0,0 +1,66 @@
apply plugin: 'java'
tasks.withType(JavaCompile){
options.encoding = 'UTF-8'
}
//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"
}
def srcDir="."
//
sourceSets{
main{
java{
srcDirs=[
"${srcDir}/fine-spring/src"
]
}
}
}
repositories{
mavenCentral()
}
//
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)
//
dependencies{
compile fileTree(dir:"${srcDir}/fine-spring/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-base/${branchName}",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-other/${branchName}",include:'**/*.jar')
testCompile 'junit:junit:4.12'
}
//
def dataContent ={def dir ->
copySpec{
from ("${dir}"){
exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html'
}
}
}
task copyFiles(type:Copy,dependsOn:'compileJava'){
copy{
println "------------------------------------------------copyfiles"
with dataContent.call("${srcDir}/fine-spring/src")
into "${classesDir}"
}
}
jar.dependsOn copyFiles

73
build.third_step3.gradle

@ -0,0 +1,73 @@
apply plugin: 'java'
tasks.withType(JavaCompile){
options.encoding = 'UTF-8'
}
//jdk版本
sourceCompatibility=1.5
def jarname="fr-third-9.0.jar"
def classesDir='build/classes/main'
def ftpreport='E:/ftp/share/report/'
//lib下的jar到classes文件夹
jar{
baseName="fr-third-9.0"
}
def srcDir="."
//
sourceSets{
main{
java{
srcDirs=[
"${srcDir}/fine-jpa/src",
"${srcDir}/fine-jboss-transaction-api/src",
"${srcDir}/fine-jboss-logging/src",
"${srcDir}/fine-classmate/src"
]
}
}
}
repositories{
mavenCentral()
}
//
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)
//
dependencies{
compile fileTree(dir:"${srcDir}/fine-jboss-logging/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-base/${branchName}",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-other/${branchName}",include:'**/*.jar')
testCompile 'junit:junit:4.12'
}
//
def dataContent ={def dir ->
copySpec{
from ("${dir}"){
exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html'
}
}
}
task copyFiles(type:Copy,dependsOn:'compileJava'){
copy{
println "------------------------------------------------copyfiles"
with dataContent.call("${srcDir}/fine-jpa/src")
with dataContent.call("${srcDir}/fine-jboss-transaction-api/src")
with dataContent.call("${srcDir}/fine-jboss-logging/src")
with dataContent.call("${srcDir}/fine-classmate/src")
into "${classesDir}"
}
}
jar.dependsOn copyFiles

68
build.third_step4.gradle

@ -0,0 +1,68 @@
apply plugin: 'java'
tasks.withType(JavaCompile){
options.encoding = 'UTF-8'
}
//jdk版本
sourceCompatibility=1.5
def jarname="fr-third-9.0.jar"
def classesDir='build/classes/main'
def ftpreport='E:/ftp/share/report/'
//lib下的jar到classes文件夹
jar{
baseName="fr-third-9.0"
}
def srcDir="."
//
sourceSets{
main{
java{
srcDirs=[
"${srcDir}/fine-hibernate/src"
]
}
}
}
repositories{
mavenCentral()
}
//
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)
//
dependencies{
compile fileTree(dir:"${srcDir}/fine-hibernate/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-base/${branchName}",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-other/${branchName}",include:'**/*.jar')
testCompile 'junit:junit:4.12'
}
//
def dataContent ={def dir ->
copySpec{
from ("${dir}"){
exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html'
}
}
}
task copyFiles(type:Copy,dependsOn:'compileJava'){
copy{
println "------------------------------------------------copyfiles"
with dataContent.call("${srcDir}/fine-hibernate/src")
into "${classesDir}"
}
}
jar.dependsOn copyFiles

68
build.third_step5.gradle

@ -0,0 +1,68 @@
apply plugin: 'java'
tasks.withType(JavaCompile){
options.encoding = 'UTF-8'
}
//jdk版本
sourceCompatibility=1.5
def jarname="fr-third-9.0.jar"
def classesDir='build/classes/main'
def ftpreport='E:/ftp/share/report/'
//lib下的jar到classes文件夹
jar{
baseName="fr-third-9.0"
}
def srcDir="."
//
sourceSets{
main{
java{
srcDirs=[
"${srcDir}/fine-druid/src"
]
}
}
}
repositories{
mavenCentral()
}
//
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)
//
dependencies{
compile fileTree(dir:"${srcDir}/fine-druid/lib",include:'ojdbc7-12.1.0.jar')
compile fileTree(dir:"${srcDir}/fine-druid/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-base/${branchName}",include:'**/*.jar')
compile fileTree(dir:"../../finereport-lib-other/${branchName}",include:'**/*.jar')
testCompile 'junit:junit:4.12'
}
//
def dataContent ={def dir ->
copySpec{
from ("${dir}"){
exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html'
}
}
}
task copyFiles(type:Copy,dependsOn:'compileJava'){
copy{
println "------------------------------------------------copyfiles"
with dataContent.call("${srcDir}/fine-druid/src")
into "${classesDir}"
}
}
jar.dependsOn copyFiles
Loading…
Cancel
Save