帆软使用的第三方框架。
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.

109 lines
2.1 KiB

7 years ago
apply plugin: 'java'
6 years ago
apply plugin: 'maven-publish'
def classesDir='build/classes/main'
7 years ago
tasks.withType(JavaCompile){
options.encoding = 'UTF-8'
6 years ago
destinationDir = file(classesDir)
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
7 years ago
}
6 years ago
//指定构建的jdk版本
7 years ago
sourceCompatibility=1.5
6 years ago
6 years ago
//解压lib下的jar到classes文件夹
6 years ago
7 years ago
jar{
6 years ago
baseName="fine-third-${version}"
7 years ago
}
6 years ago
repositories {
mavenCentral()
maven { url "http://mvn.finedevelop.com/repository/maven-public/" }
}
7 years ago
sourceSets{
main{
java{
srcDirs=[]
}
}
}
6 years ago
//获取什么分支名
6 years ago
FileTree files =fileTree(dir:'./',include:'build*.gradle')
6 years ago
def buildDir=files[0].path.substring(0,files[0].path.lastIndexOf (java.io.File.separator))
def branchName=buildDir.substring(buildDir.lastIndexOf (java.io.File.separator)+1)
6 years ago
version='10.0'
7 years ago
def srcDir="."
6 years ago
def maven_version="${version}-RELEASE-SNAPSHOT"
def jar_version = version
7 years ago
6 years ago
configurations {
thirdjar
6 years ago
sigar
6 years ago
}
6 years ago
dependencies {
6 years ago
thirdjar "com.fr.third:fine-third:10.0-RELEASE-SNAPSHOT"
6 years ago
sigar "com.fr.third:sigar:1.6.0"
6 years ago
testCompile 'junit:junit:4.12'
}
7 years ago
6 years ago
publishing {
publications {
third(MavenPublication) {
groupId "com.fr.third"
artifactId "fine-third"
version maven_version
from components.java
}
}
repositories {
maven {
url "http://mvn.finedevelop.com/repository/fanruan/"
credentials {
username = findProperty("NEXUS_USERNAME")
password = findProperty("NEXUS_PASSWORD")
}
}
}
}
6 years ago
task unpack(type:Copy) {
delete classesDir
destinationDir=file(classesDir)
println(configurations.thirdjar.singleFile)
from {
zipTree(configurations.thirdjar.singleFile)
}
from {
6 years ago
zipTree(configurations.sigar.singleFile)
6 years ago
}
from {
6 years ago
zipTree("fine-quartz/lib/c3p0-0.9.1.1.jar")
}
6 years ago
from {
zipTree("fine-spring/lib/aopalliance-1.0.jar")
}
from {
zipTree("fine-poi/lib/curvesapi-1.03.jar")
}
fileTree(dir:"build/libs",include:"**/*.jar").each {
File file -> from {
zipTree(file)
7 years ago
}
}
6 years ago
7 years ago
}
6 years ago
jar.dependsOn unpack
7 years ago