-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.gradle.kts
54 lines (46 loc) · 1.96 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
50
51
52
53
54
@file:Suppress("UnstableApiUsage")
pluginManagement {
// Preload versions of all plugins for all projects.
// They should still be applied in the subproject's build.gradle.
// Within subprojects, version should be omitted.
plugins {
val kotlinVersion: String by settings
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion apply false
val spotlessPluginVersion: String by settings
id("com.diffplug.spotless") version spotlessPluginVersion apply false
val detektPluginVersion: String by settings
id("io.gitlab.arturbosch.detekt") version detektPluginVersion apply false
val cordaGradlePluginsVersion: String by settings
id("net.corda.plugins.cordapp") version cordaGradlePluginsVersion apply false
val licenseReportVersion: String by settings
id("com.github.jk1.dependency-license-report") version licenseReportVersion apply false
val shadowPluginVersion: String by settings
id("com.github.johnrengelman.shadow") version shadowPluginVersion apply false
}
repositories { // Only for these plugins. Repos for other dependencies should be defined in build.gradle.kts
mavenLocal()
google()
mavenCentral()
maven("https://plugins.gradle.org/m2/")
maven("https://download.corda.net/maven/corda-releases")
maven("https://download.corda.net/maven/corda-dependencies")
maven("https://download.corda.net/maven/corda")
}
}
include("utils")
include("common")
include("crypto")
include("protocol")
include("gradle-plugin")
include("test-utils")
include("compiler-plugin-ksp")
include("serialization")
include("annotations")
include(":zinc-poet:zinc-poet")
include(":zinc-poet:zinc-bfl")
include(":zinc-poet:zinc-code-generation")
include(":integration-tests:fixtures")
include(":integration-tests:contracts")
include(":integration-tests:flows")
include(":integration-tests:serialization")