You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
366 B
15 lines
366 B
apply plugin: 'java' |
|
|
|
sourceCompatibility = 1.6 |
|
|
|
test { |
|
useTestNG() |
|
} |
|
|
|
dependencies { |
|
testCompile 'com.google.guava:guava:14.0.1' |
|
testCompile 'com.google.code.gson:gson:2.2.4' |
|
testCompile 'com.fasterxml.jackson.core:jackson-databind:2.2.2' |
|
testCompile 'org.testng:testng:6.8.5' |
|
testCompile 'com.google.mockwebserver:mockwebserver:20130706' |
|
}
|
|
|