forked from gdg-berlin-android/ZeBadge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
42 lines (37 loc) · 939 Bytes
/
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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
plugins {
kotlin("jvm").version(extra["kotlin.version"] as String)
id("org.jetbrains.compose").version(extra["compose.version"] as String)
}
}
plugins {
// See https://jmfayard.github.io/refreshVersions
id("de.fayard.refreshVersions") version "0.60.3"
}
refreshVersions {
this.rejectVersionIf {
this.candidate.stabilityLevel != de.fayard.refreshVersions.core.StabilityLevel.Stable
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven {
setUrl("https://jitpack.io")
}
}
}
rootProject.name = "ZeBadge"
include(":android")
include(":benchmark")
include(":desktop")
include(":terminal")
include(":server")
include(":badge")