-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsettings.gradle
49 lines (47 loc) · 2.71 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
/*
* Copyright 2021 Thoughtworks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
rootProject.name = 'go-plugins'
include ':plugin-common'
include ':invalid-xml-plugin'
include ':plugin-with-invalid-id'
include ':plugin-with-multiple-load-methods'
include ':test-notification-plugin'
include ':test-scm-plugin'
include ':test-donothing-plugin'
include ':test-valid-innerclass-plugin'
include ':test-valid-staticclass-plugin'
include ':test-valid-subclass-plugin'
include ':test-with-some-plugin-xml-values'
include ':dummy-artifact-plugin'
include ':test-plugin-bundle'
include ':test-plugin-bundle:'
include ':plugin-1'
include ':plugin-2'
project(':plugin-common').projectDir = "$rootDir/plugin-common" as File
project(':invalid-xml-plugin').projectDir = "$rootDir/plugins-for-tests/invalid-xml-plugin" as File
project(':plugin-with-invalid-id').projectDir = "$rootDir/plugins-for-tests/plugin-with-invalid-id" as File
project(':plugin-with-multiple-load-methods').projectDir = "$rootDir/plugins-for-tests/plugin-with-multiple-load-methods" as File
project(':test-notification-plugin').projectDir = "$rootDir/plugins-for-tests/test-notification-plugin" as File
project(':test-scm-plugin').projectDir = "$rootDir/plugins-for-tests/test-scm-plugin" as File
project(':test-donothing-plugin').projectDir = "$rootDir/plugins-for-tests/test-donothing-plugin" as File
project(':test-valid-innerclass-plugin').projectDir = "$rootDir/plugins-for-tests/test-valid-innerclass-plugin" as File
project(':test-valid-staticclass-plugin').projectDir = "$rootDir/plugins-for-tests/test-valid-staticclass-plugin" as File
project(':test-valid-subclass-plugin').projectDir = "$rootDir/plugins-for-tests/test-valid-subclass-plugin" as File
project(':test-with-some-plugin-xml-values').projectDir = "$rootDir/plugins-for-tests/test-with-some-plugin-xml-values" as File
project(':dummy-artifact-plugin').projectDir = "$rootDir/plugins-for-tests/dummy-artifact-plugin" as File
project(':test-plugin-bundle').projectDir = "$rootDir/plugins-for-tests/test-plugin-bundle" as File
project(':plugin-1').projectDir = "$rootDir/plugins-for-tests/test-plugin-bundle/plugin-1" as File
project(':plugin-2').projectDir = "$rootDir/plugins-for-tests/test-plugin-bundle/plugin-2" as File