forked from microsoft/kiota-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
22 lines (19 loc) · 747 Bytes
/
settings.gradle
File metadata and controls
22 lines (19 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
rootProject.name = 'kiota-java'
System.setProperty("sonar.gradle.skipCompile", "true")
String suffix = ""
if (Boolean.parseBoolean(settings['android'])) {
logger.info('Building Android compatibility projects')
suffix = ":android"
}
if (Boolean.parseBoolean(settings['java8'])) {
logger.info('Building Java 8 compatibility projects')
suffix = ":java-8"
}
include ':components:abstractions' + suffix
include ':components:serialization:form' + suffix
include ':components:serialization:json' + suffix
include ':components:serialization:text' + suffix
include ':components:serialization:multipart' + suffix
include ':components:authentication:azure' + suffix
include ':components:http:okHttp' + suffix
include ':components:bundle' + suffix