Christian Basler
6be8d51f6d
- connection manager should now be rock stable - does try to create new connections as long as there are less than eight active connections, which might result in more than eight outgoing connections, but this shouldn't be a problem - some minor improvements and bug fixes
14 lines
234 B
Groovy
14 lines
234 B
Groovy
apply plugin: 'java'
|
|
|
|
sourceCompatibility = 1.7
|
|
version = '0.0.1'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':domain')
|
|
testCompile 'org.slf4j:slf4j-simple:1.7.12'
|
|
testCompile 'junit:junit:4.11'
|
|
} |