diff options
| author | Bogdan Drutu <bdrutu@google.com> | 2017-03-21 10:52:28 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-21 10:52:28 -0700 |
| commit | 00202c0d857714e5a27efedb14eb1cd343fcadd9 (patch) | |
| tree | 481d2007185ff16dad2e1b5f7763c118a9fdf69a /settings.gradle | |
| parent | 3f3dd93a9f76d7cd8da54d42cbff4c50769a7e60 (diff) | |
| download | platform_external_opencensus-java-00202c0d857714e5a27efedb14eb1cd343fcadd9.tar.gz platform_external_opencensus-java-00202c0d857714e5a27efedb14eb1cd343fcadd9.tar.bz2 platform_external_opencensus-java-00202c0d857714e5a27efedb14eb1cd343fcadd9.zip | |
Add support for gradle to build the instrumentation-java. (#158)
* Add support for gradle to build the instrumentation-java.
* Change the version to 0.4.0-SNAPSHOT.
Diffstat (limited to 'settings.gradle')
| -rw-r--r-- | settings.gradle | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 00000000..0d26d20a --- /dev/null +++ b/settings.gradle @@ -0,0 +1,14 @@ +rootProject.name = "instrumentation" +include ":instrumentation-core" +include ":instrumentation-core-context-impl" +include ":instrumentation-core-impl" +include ":instrumentation-all" +include ":proto" +include ":shared" + +project(':instrumentation-all').projectDir = "$rootDir/all" as File +project(':instrumentation-core').projectDir = "$rootDir/core" as File +project(':instrumentation-core-context-impl').projectDir = "$rootDir/core_context_impl" as File +project(':instrumentation-core-impl').projectDir = "$rootDir/core_impl" as File +project(':proto').projectDir = "$rootDir/proto" as File +project(':shared').projectDir = "$rootDir/shared" as File |
