Browse Source

build

feature/9.0
daniel 7 years ago
parent
commit
9a09e14c23
  1. 89
      build.third.gradle
  2. 12
      fine-druid/fine-druid.iml
  3. 13
      fine-poi/fine-poi.iml
  4. 13
      fine-quartz/fine-quartz.iml

89
build.third.gradle

@ -0,0 +1,89 @@
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",
"${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-druid/lib",include:'ojdbc7-12.1.0.jar')
compile fileTree(dir:"${srcDir}/fine-druid/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/fine-poi/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/fine-quartz/lib",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'
}
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')
}
}
}
}
//
def dataContent ={def dir ->
copySpec{
from ("${dir}"){
exclude '**/.setting/**','.classpath','.project','**/*.java','**/*.db','**/*.g','**/package.html'
}
}
}
task copyFiles(type:Copy,dependsOn:'unJar'){
copy{
println "------------------------------------------------copyfiles"
with dataContent.call("${srcDir}/fine-druid/src")
with dataContent.call("${srcDir}/fine-poi/src")
with dataContent.call("${srcDir}/fine-quartz/src")
into "${classesDir}"
}
}

12
fine-druid/fine-druid.iml

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="lib-druid" level="project" />
</component>
</module>

13
fine-poi/fine-poi.iml

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="lib-poi" level="project" />
<orderEntry type="library" name="lib" level="project" />
</component>
</module>

13
fine-quartz/fine-quartz.iml

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="lib-quartz" level="project" />
<orderEntry type="library" name="lib" level="project" />
</component>
</module>
Loading…
Cancel
Save