forked from Azure/autorest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
19 lines (19 loc) · 1.08 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
include ':azure-android-client-authentication'
final PROJECT_ROOT = '.'
final RUNTIME_ROOT = "$PROJECT_ROOT/src/client/Java"
final TEST_ROOT = "$PROJECT_ROOT/src/generator"
include \
'client-runtime',
'azure-client-runtime',
'azure-client-authentication',
'azure-android-client-authentication',
'codegen-tests',
'azure-codegen-tests',
'azure-fluent-codegen-tests'
project(':client-runtime').projectDir = new File("$RUNTIME_ROOT/client-runtime")
project(':azure-client-runtime').projectDir = new File("$RUNTIME_ROOT/azure-client-runtime")
project(':azure-client-authentication').projectDir = new File("$RUNTIME_ROOT/azure-client-authentication")
project(':azure-android-client-authentication').projectDir = new File("$RUNTIME_ROOT/azure-android-client-authentication")
project(':codegen-tests').projectDir = new File("$TEST_ROOT/AutoRest.Java.Tests")
project(':azure-codegen-tests').projectDir = new File("$TEST_ROOT/AutoRest.Java.Azure.Tests")
project(':azure-fluent-codegen-tests').projectDir = new File("$TEST_ROOT/AutoRest.Java.Azure.Fluent.Tests")