- add jedis dependency

- change copyToLib task to resolveDeps so it's consistent with the other subsystems
This commit is contained in:
Richard Alam 2011-03-22 10:43:31 -04:00
parent 92c0af9f49
commit bc4be2b7bf
2 changed files with 9 additions and 1 deletions

View File

@ -29,6 +29,10 @@ dependencies {
// Testing
compile 'org.testng:testng:5.8@jar'
compile 'org.easymock:easymock:2.4@jar'
//redis
compile 'redis.clients:jedis:1.5.1'
compile 'commons-pool:commons-pool:1.5.5'
}
test {

View File

@ -2,7 +2,7 @@ usePlugin 'scala'
usePlugin 'java'
usePlugin 'eclipse'
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
@ -54,6 +54,10 @@ dependencies {
compile 'org.scala-lang:scala-library:2.7.7'
compile 'net/lag/configgy:configgy:1.5@jar'
//redis
compile 'redis.clients:jedis:1.5.1'
compile 'commons-pool:commons-pool:1.5.5'
}
subprojects {