Skip to content
Snippets Groups Projects
Commit f77f6277 authored by Richard Alam's avatar Richard Alam
Browse files

- rename copyToLib task to resolveDeps (resolve dependencies)

 - add resolver for netty lib
parent 8e6354c4
No related merge requests found
......@@ -10,7 +10,7 @@ def appName = 'bigbluebutton'
archivesBaseName = appName
task copyToLib(dependsOn: configurations.default.buildArtifacts, type: Copy) {
task resolveDeps(dependsOn: configurations.default.buildArtifacts, type: Copy) {
into('lib')
from configurations.default
from configurations.default.allArtifacts*.file
......@@ -42,12 +42,17 @@ repositories {
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[module]/[revision]/[artifact](-[revision])-jdk15.[ext]"
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[artifact]/[revision]/[artifact](-[revision])-jdk15.[ext]"
}
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = "netty-dependency"
m2compatible = true
addArtifactPattern "http://repository.jboss.org/maven2/[organisation]/[module]/[revision]/[artifact](-[revision]).[ext]"
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[artifact]/[revision]/[artifact](-[revision]).[ext]"
}
}
mavenRepo urls: 'http://scala-tools.org/repo-releases/'
flatDir name: 'fileRepo', dirs: "/home/firstuser/dev/repo"
}
dependencies {
// JMS
compile 'org.apache.activemq:activemq-core:5.1.0@jar'
......@@ -64,9 +69,9 @@ dependencies {
// Asterisk-Java
compile 'org.asteriskjava:asterisk-java:1.0.0.M3@jar'
// Freeswitch ESL Client
compile 'org.freeswitch.esl.client:org.freeswitch.esl.client:0.9.0-SNAPSHOT@jar'
compile 'org.jboss.netty:netty:3.1.5.GA@jar'
// Freeswitch ESL Client
compile 'org/freeswitch:org.freeswitch.esl.client:0.9.0-SNAPSHOT@jar'
compile 'org.jboss.netty:netty:3.1.5.GA@jar'
// Spring
providedCompile 'spring:spring-web:3.0.0@jar', 'aopalliance:aopalliance:1.0:@jar'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment