-
Notifications
You must be signed in to change notification settings - Fork 34
/
build.gradle
30 lines (29 loc) · 1.36 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
evaluationDependsOn(':')
dependencies {
api(
"io.netty:netty-codec-http:$nettyVersion",
"com.nike.fastbreak:fastbreak:$fastbreakVersion",
"com.nike.backstopper:backstopper-core:$backstopperVersion",
"com.fasterxml.jackson.core:jackson-databind:$jacksonVersion",
"org.slf4j:slf4j-api:$slf4jVersion"
)
compileOnly(
"org.jetbrains:annotations:$jetbrainsAnnotationsVersion",
)
testImplementation (
"org.jetbrains:annotations:$jetbrainsAnnotationsVersion",
"org.junit.jupiter:junit-jupiter-engine:$junit5Version",
"org.junit.vintage:junit-vintage-engine:$junit5Version",
"junit:junit:$junitVersion",
"org.mockito:mockito-core:$mockitoVersion",
"org.assertj:assertj-core:$assertJVersion",
"com.nike.backstopper:backstopper-reusable-tests:$backstopperVersion",
"org.spockframework:spock-core:$spockVersion",
"org.codehaus.groovy:groovy-all:$groovyVersion",
"cglib:cglib:$cgLibVersion", //For Spock mocks
"org.objenesis:objenesis:$objenesisVersion", //Also for Spock mocks
"uk.org.lidalia:slf4j-test:$slf4jTestVersion",
"com.tngtech.java:junit-dataprovider:$junitDataproviderVersion",
"com.nike.wingtips:wingtips-core:$wingtipsVersion"
)
}