forked from glassfy/android-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
41 lines (38 loc) · 1.23 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
pluginManagement {
val androidPluginVersion: String by settings
val jetbrainsKotlinVersion: String by settings
val nexusPublishPlugin: String by settings
val kspVersion: String by settings
plugins {
id("com.android.application") version androidPluginVersion
id("com.android.library") version androidPluginVersion
kotlin("android") version jetbrainsKotlinVersion
kotlin("jvm") version jetbrainsKotlinVersion
id("com.google.devtools.ksp") version kspVersion
id("org.jetbrains.dokka") version jetbrainsKotlinVersion
id("io.github.gradle-nexus.publish-plugin") version nexusPublishPlugin
}
repositories {
gradlePluginPortal()
google()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal()
// staging repo
maven {
url = uri("https://s01.oss.sonatype.org/content/groups/staging/")
}
// snapshot repo
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
}
}
rootProject.name = "Glassfy"
include(":glassfy")
include(":paywall")