forked from ForgeRock/forgerock-android-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
49 lines (41 loc) · 1.2 KB
/
settings.gradle.kts
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 (c) 2019 - 2024 ForgeRock. All rights reserved.
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
}
include(":forgerock-auth")
include(":forgerock-auth-ui")
include(":forgerock-core")
include(":forgerock-authenticator")
include(":ping-protect")
include(":auth")
project(":auth").projectDir = File("samples/auth")
include(":authenticator")
project(":authenticator").projectDir = File("samples/authenticator")
/*
include ':pebblebank'
project(':pebblebank').projectDir = new File('demo/pebblebank')
*/
include(":quickstart")
project(":quickstart").projectDir = File("samples/quickstart")
include(":kotlin")
project(":kotlin").projectDir = File("samples/kotlin")
include(":app")
project(":app").projectDir = File("samples/app")
include(":forgerock-integration-tests")