-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
38 lines (32 loc) · 1.17 KB
/
settings.gradle.kts
File metadata and controls
38 lines (32 loc) · 1.17 KB
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
pluginManagement {
val kotlinVersion = providers.gradleProperty("kotlinVersion").get()
val springBootVersion = providers.gradleProperty("springBootVersion").get()
val springDependencyManagementVersion = providers.gradleProperty("springDependencyManagementVersion").get()
val sonarQubePluginVersion = providers.gradleProperty("sonarQubePluginVersion").get()
repositories {
gradlePluginPortal()
mavenCentral()
}
plugins {
kotlin("jvm") version kotlinVersion
kotlin("plugin.spring") version kotlinVersion
kotlin("plugin.jpa") version kotlinVersion
id("org.springframework.boot") version springBootVersion
id("io.spring.dependency-management") version springDependencyManagementVersion
id("org.sonarqube") version sonarQubePluginVersion
}
}
rootProject.name = "app"
include("boot")
include("presentation")
include("domain")
include("application")
include("infrastructure")
include("infrastructure:mysql")
include("infrastructure:jpa")
include("infrastructure:oauth")
include("infrastructure:rest")
include("infrastructure:kafka")
include("worker")
include("worker:rss")
include("worker:scheduler")