* Upgrade all the dependencies to the latest versions * Fix some incompatibilities * Fix some warnings
11 lines
253 B
Groovy
11 lines
253 B
Groovy
ext {
|
|
mockserverVersion='5.13.2'
|
|
}
|
|
|
|
dependencies {
|
|
api project(':twitter-common')
|
|
|
|
testImplementation "org.mock-server:mockserver-netty:$mockserverVersion"
|
|
testImplementation "org.mock-server:mockserver-client-java:$mockserverVersion"
|
|
}
|