blob: 2d5320a64c9d8d89e763fe1ea63b06334d7bc93f [file] [log] [blame]
nathanmittler164b7342014-12-15 09:58:05 -08001rootProject.name = "stubby"
2include ":stubby-core"
3include ":stubby-stub"
4include ":stubby-auth"
5include ":stubby-okhttp"
6include ":stubby-netty"
7include ":stubby-testing"
8include ":stubby-integration-testing"
9include ":stubby-all"
10
11project(':stubby-core').projectDir = "$rootDir/core" as File
12project(':stubby-stub').projectDir = "$rootDir/stub" as File
13project(':stubby-auth').projectDir = "$rootDir/auth" as File
14project(':stubby-okhttp').projectDir = "$rootDir/okhttp" as File
15project(':stubby-netty').projectDir = "$rootDir/netty" as File
16project(':stubby-testing').projectDir = "$rootDir/testing" as File
17project(':stubby-integration-testing').projectDir = "$rootDir/integration-testing" as File
18project(':stubby-all').projectDir = "$rootDir/all" as File