-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (26 loc) · 1.37 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
group 'io.jansyk13'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'groovy'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'ch.qos.logback', name: 'logback-core', version: '1.2.3'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
compile group: 'io.netty', name: 'netty-all', version: '4.1.17.Final'
compile group: 'io.vavr', name: 'vavr', version: '0.9.2'
compile group: 'io.projectreactor', name: 'reactor-core', version: '3.1.2.RELEASE'
compile group: 'io.projectreactor', name: 'reactor-stream', version: '2.0.8.RELEASE'
compile group: 'org.reactivestreams', name: 'reactive-streams', version: '1.0.1'
testCompile "org.codehaus.groovy:groovy-all:2.4.10"
testCompile "org.spockframework:spock-core:1.1-groovy-2.4"
testCompile group: 'net.jadler', name: 'jadler-core', version: '1.3.0'
testCompile group: 'net.jadler', name: 'jadler-jdk', version: '1.3.0'
testCompile "org.hamcrest:hamcrest-core:1.3" // only necessary if Hamcrest matchers are used
testRuntime "net.bytebuddy:byte-buddy:1.6.5" // allows mocking of classes (in addition to interfaces)
testRuntime "org.objenesis:objenesis:2.5.1"
// allows mocking of classes without default constructor (together with CGLIB)
}