forked from michaelklishin/eventsource-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
21 lines (17 loc) · 665 Bytes
/
build.gradle
File metadata and controls
21 lines (17 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
apply plugin: 'java'
apply plugin: 'maven'
group = 'com.github.aslakhellesoy'
version = '0.1.2.1'
configurations.all {
}
repositories {
maven { url "http://repository.jboss.org/nexus/content/groups/public/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'io.netty', name: 'netty-all', version:'4.1.0.Beta3'
testCompile group: 'org.webbitserver', name: 'webbit', version:'0.1.13'
testCompile group: 'junit', name: 'junit', version:'4.8.2'
testCompile group: 'org.mockito', name: 'mockito-all', version:'1.8.5'
}