We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c8e2ba commit e58a3c9Copy full SHA for e58a3c9
build.gradle
@@ -26,6 +26,10 @@ repositories {
26
jcenter()
27
}
28
29
+configurations {
30
+ testCompile.extendsFrom compileOnly
31
+}
32
+
33
dependencies {
34
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
35
implementation 'com.google.guava:guava:29.0-jre'
@@ -40,8 +44,6 @@ dependencies {
40
44
// https://mvnrepository.com/artifact/org.mockito/mockito-core
41
45
testImplementation 'org.mockito:mockito-core:3.5.13'
42
46
testImplementation 'org.hamcrest:hamcrest:2.2'
43
- // https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5
- testCompile group: 'org.apache.httpcomponents.client5', name: 'httpclient5', version: '5.0.2'
47
48
// Lombok
49
compileOnly 'org.projectlombok:lombok:1.18.12'
0 commit comments