- add jedis dependency
- change copyToLib task to resolveDeps so it's consistent with the other subsystems
This commit is contained in:
parent
92c0af9f49
commit
bc4be2b7bf
@ -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 {
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user