-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
33 lines (27 loc) · 829 Bytes
/
settings.gradle.kts
File metadata and controls
33 lines (27 loc) · 829 Bytes
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
pluginManagement {
repositories {
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
}
}
// The following block registers dependencies to enable Kobweb snapshot support. It is safe to delete or comment out
// this block if you never plan to use them.
gradle.settingsEvaluated {
fun RepositoryHandler.kobwebSnapshots() {
maven("https://central.sonatype.com/repository/maven-snapshots/") {
mavenContent {
includeGroupByRegex("com\\.varabyte\\.kobweb.*")
snapshotsOnly()
}
}
}
pluginManagement.repositories { kobwebSnapshots() }
dependencyResolutionManagement.repositories { kobwebSnapshots() }
}
rootProject.name = "Portfolio-Kobweb"
include(":site")