Skip to content

Commit

Permalink
- rename copyToLib task to resolveDeps (resolve dependencies)
Browse files Browse the repository at this point in the history
 - add resolver for netty lib
  • Loading branch information
ritzalam committed Jul 21, 2010
1 parent 8e6354c commit f77f627
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions bigbluebutton-apps/build.gradle
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand All @@ -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'
Expand Down

0 comments on commit f77f627

Please sign in to comment.