summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorEmmanuel Bourg <ebourg@apache.org>2019-03-09 14:46:25 +0000
committerAndrej Shadura <andrewsh@debian.org>2019-03-09 14:46:25 +0000
commit21f371dfa223365fa2dbcc249f000b3394060437 (patch)
tree9c7a7c83b635acd430a64d43a1177e9cdd2f4144 /build.gradle
parent661823cd8f8ec684e830cbafb0a4b6577b608f28 (diff)
Disable the OkHttp support (not in Debian)
Forwarded: not-needed Gbp-Pq: Name 0043-ignore-okhttp.patch
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 8 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 3825c962..f5f28bb8 100644
--- a/build.gradle
+++ b/build.gradle
@@ -743,6 +743,14 @@ project("spring-web") {
testCompile("com.squareup.okhttp3:mockwebserver:${okhttp3Version}")
testRuntime("com.sun.mail:javax.mail:${javamailVersion}")
}
+
+ sourceSets {
+ main {
+ java {
+ exclude "**/OkHttp*"
+ }
+ }
+ }
}
project("spring-orm") {