mirror of
https://github.com/square/okhttp.git
synced 2026-01-14 07:22:20 +03:00
The previous module structure was necessary because Maven wouldn't allow mockwebserver to depend on okhttp/src and for okhttp/test to depend on mockwebserver. With Gradle this constraint is lifted and we can fold everything into a single module. I'm in a rush to do this now because it's necessary for Kotlin 'internal' tests to be in the same module.
17 lines
449 B
Groovy
17 lines
449 B
Groovy
include ':mockwebserver'
|
|
include ':okcurl'
|
|
include ':okhttp'
|
|
include ':okhttp-dnsoverhttps'
|
|
include ':okhttp-hpacktests'
|
|
include ':okhttp-logging-interceptor'
|
|
include ':okhttp-sse'
|
|
include ':okhttp-testing-support'
|
|
include ':okhttp-tls'
|
|
include ':okhttp-urlconnection'
|
|
include ':samples:crawler'
|
|
include ':samples:guide'
|
|
include ':samples:simple-client'
|
|
include ':samples:slack'
|
|
include ':samples:static-server'
|
|
include ':samples:unixdomainsockets'
|