-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
53 lines (47 loc) · 1.52 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
pluginManagement {
val weMavenUser: String by settings
val weMavenPassword: String by settings
val kotlinVersion: String by settings
val springBootVersion: String by settings
val springDependencyManagementVersion: 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 springDependencyManagementVersion apply false
}
repositories {
gradlePluginPortal()
mavenCentral()
maven {
name = "maven-snapshots"
url = uri("https://artifacts.wavesenterprise.com/repository/maven-snapshots/")
mavenContent {
snapshotsOnly()
}
credentials {
username = weMavenUser
password = weMavenPassword
}
}
maven {
name = "maven-releases"
url = uri("https://artifacts.wavesenterprise.com/repository/maven-releases/")
mavenContent {
releasesOnly()
}
credentials {
username = weMavenUser
password = weMavenPassword
}
}
mavenLocal()
}
}
rootProject.name = "rent-car"
include(
"rent-car-contract-app",
"rent-car-webapp-app"
)