Jabit/networking/build.gradle
Christian Basler 6be8d51f6d Distributable JAR build
- 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
2015-06-18 13:41:11 +02:00

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'
}