-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle.kts
36 lines (34 loc) · 962 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
import java.net.URI
pluginManagement {
includeBuild("build-logic")
repositories {
// Sometimes, it worked instead of google() notation
// maven { url = uri("https://maven.google.com") }
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
// Sometimes, it worked instead of google() notation
// maven { url = uri("https://maven.google.com") }
google()
mavenCentral()
maven { url = URI.create("https://jitpack.io") }
}
versionCatalogs {
create("sdk") {
version("compile", "34")
version("target", "34")
}
create("jvm") {
version("toolchain", "17")
}
}
}
rootProject.name = "NsmaVPN"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":app")
include(":macrobenchmark")