-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsettings.gradle
52 lines (46 loc) · 1.51 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* SPDX-License-Identifier: CC0-1.0
*
* Copyright 2018-2020 Will Sargent.
*
* Licensed under the CC0 Public Domain Dedication;
* You may obtain a copy of the License at
*
* http://creativecommons.org/publicdomain/zero/1.0/
*/
pluginManagement {
repositories {
jcenter()
maven { url 'https://plugins.gradle.org/m2/' }
}
}
rootProject.name = 'terse-logback'
def includeProject = { String projectName ->
File projectDir = new File(settingsDir, projectName)
String buildFileName = "${projectName}.gradle"
assert projectDir.isDirectory()
assert new File(projectDir, buildFileName).isFile()
include projectName
project(":${projectName}").projectDir = projectDir
project(":${projectName}").buildFileName = buildFileName
}
includeProject 'logback-bytebuddy'
includeProject 'logback-censor'
includeProject 'logback-core'
includeProject 'logback-correlationid'
includeProject 'logback-classic'
includeProject 'logback-typesafe-config'
includeProject 'logback-audio'
includeProject 'logback-compress-encoder'
includeProject 'logback-budget'
includeProject 'logback-uniqueid-appender'
includeProject 'logback-exception-mapping'
includeProject 'logback-exception-mapping-providers'
includeProject 'logback-turbomarker'
includeProject 'logback-tracing'
includeProject 'logback-jdbc-appender'
includeProject 'logback-honeycomb-client'
includeProject 'logback-honeycomb-appender'
includeProject 'logback-honeycomb-okhttp'
includeProject 'logback-postgresjson-appender'
//includeProject 'guide'