2014-02-25 00:00:43 +08:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'eclipse'
|
2010-07-21 23:24:42 +08:00
|
|
|
|
2014-08-13 19:20:10 +08:00
|
|
|
version = '0.9.0'
|
2010-07-21 23:24:42 +08:00
|
|
|
jar.enabled = true
|
|
|
|
|
|
|
|
def appName = 'fs-esl-client'
|
|
|
|
|
|
|
|
archivesBaseName = appName
|
|
|
|
|
2014-02-25 00:00:43 +08:00
|
|
|
task resolveDeps(type: Copy) {
|
2013-05-19 11:04:34 +08:00
|
|
|
into('lib')
|
|
|
|
from configurations.default
|
2014-02-25 00:00:43 +08:00
|
|
|
from configurations.default.allArtifacts.file
|
2013-05-19 11:04:34 +08:00
|
|
|
}
|
|
|
|
|
2014-02-25 00:00:43 +08:00
|
|
|
|
2010-07-21 23:24:42 +08:00
|
|
|
artifacts {
|
|
|
|
archives jar
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
add(new org.apache.ivy.plugins.resolver.ChainResolver()) {
|
|
|
|
name = 'remote'
|
|
|
|
returnFirst = true
|
|
|
|
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
|
|
|
|
name = "googlecode"
|
|
|
|
addArtifactPattern "http://red5.googlecode.com/svn/repository/[artifact](-[revision]).[ext]"
|
|
|
|
addArtifactPattern "http://red5.googlecode.com/svn/repository/[organisation]/[artifact](-[revision]).[ext]"
|
|
|
|
}
|
|
|
|
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
|
|
|
|
name = "blindside-repos"
|
|
|
|
addArtifactPattern "http://blindside.googlecode.com/svn/repository/[artifact](-[revision]).[ext]"
|
|
|
|
addArtifactPattern "http://blindside.googlecode.com/svn/repository/[organisation]/[artifact](-[revision]).[ext]"
|
|
|
|
}
|
|
|
|
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
|
|
|
|
name = "maven2-central"
|
|
|
|
m2compatible = true
|
|
|
|
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[module]/[revision]/[artifact](-[revision]).[ext]"
|
|
|
|
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[artifact]/[revision]/[artifact](-[revision]).[ext]"
|
|
|
|
}
|
|
|
|
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
|
|
|
|
name = "netty-dependency"
|
|
|
|
m2compatible = true
|
2011-01-18 05:26:06 +08:00
|
|
|
addArtifactPattern "http://repository.jboss.org/nexus/content/groups/public-jboss/[organisation]/[module]/[revision]/[artifact](-[revision]).[ext]"
|
2010-07-21 23:24:42 +08:00
|
|
|
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[artifact]/[revision]/[artifact](-[revision]).[ext]"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
flatDir name: 'fileRepo', dirs: "/home/firstuser/dev/repo"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2013-05-19 11:04:34 +08:00
|
|
|
// Logging
|
|
|
|
compile 'ch.qos.logback:logback-core:1.0.9@jar'
|
|
|
|
compile 'ch.qos.logback:logback-classic:1.0.9@jar'
|
|
|
|
compile 'org.slf4j:log4j-over-slf4j:1.7.2@jar'
|
|
|
|
compile 'org.slf4j:jcl-over-slf4j:1.7.2@jar'
|
|
|
|
compile 'org.slf4j:jul-to-slf4j:1.7.2@jar'
|
|
|
|
compile 'org.slf4j:slf4j-api:1.7.2@jar'
|
|
|
|
|
2011-01-18 05:26:06 +08:00
|
|
|
testRuntime 'junit:junit:4.8.1.@jar'
|
2013-05-19 11:04:34 +08:00
|
|
|
compile 'org.jboss.netty:netty:3.2.9.Final@jar'
|
2013-05-19 11:53:15 +08:00
|
|
|
|
|
|
|
//compile 'io.netty:netty:3.6.0.Final@jar'
|
2010-07-21 23:24:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uploadArchives {
|
|
|
|
uploadDescriptor = false
|
|
|
|
repositories {
|
|
|
|
add project.repositories.fileRepo
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|