-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle.kts
54 lines (48 loc) · 2.08 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
pluginManagement {
val kotlinVersion: String by settings
val springBootVersion: String by settings
val gradleDependencyManagementVersion: String by settings
val detektVersion: String by settings
val gitPropertiesVersion: String by settings
val palantirGitVersion: String by settings
val jGitVerVersion: String by settings
val dokkaVersion: String by settings
val nexusPublishVersion: String by settings
plugins {
kotlin("jvm") version kotlinVersion apply false
kotlin("plugin.spring") version kotlinVersion apply false
kotlin("plugin.jpa") version kotlinVersion apply false
`maven-publish`
id("org.springframework.boot") version springBootVersion apply false
id("io.spring.dependency-management") version gradleDependencyManagementVersion apply false
id("io.gitlab.arturbosch.detekt") version detektVersion apply false
id("com.palantir.git-version") version palantirGitVersion apply false
id("com.gorylenko.gradle-git-properties") version gitPropertiesVersion apply false
id("jacoco")
id("fr.brouillard.oss.gradle.jgitver") version jGitVerVersion
id("org.jetbrains.dokka") version dokkaVersion
id("io.github.gradle-nexus.publish-plugin") version nexusPublishVersion
}
repositories {
gradlePluginPortal()
mavenCentral()
}
}
rootProject.name = "we-tx-observer"
include(
"we-tx-observer-module",
"we-tx-observer-module:we-tx-observer-api",
"we-tx-observer-module:we-tx-observer-jpa",
"we-tx-observer-module:we-tx-observer-domain",
"we-tx-observer-module:we-tx-observer-starter",
"we-tx-observer-module:we-tx-observer-core-spring",
"we-tx-tracker-module",
"we-tx-tracker-module:we-tx-tracker-api",
"we-tx-tracker-module:we-tx-tracker-jpa",
"we-tx-tracker-module:we-tx-tracker-domain",
"we-tx-tracker-module:we-tx-tracker-starter",
"we-tx-tracker-module:we-tx-tracker-read-starter",
"we-tx-tracker-module:we-tx-tracker-core-spring",
"we-tx-observer-common-components",
"we-tx-observer-bom",
)