-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsettings.gradle
More file actions
27 lines (23 loc) · 770 Bytes
/
Copy pathsettings.gradle
File metadata and controls
27 lines (23 loc) · 770 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
rootProject.name = "PrimeCalendar"
include ':library'
enableFeaturePreview('VERSION_CATALOGS')
dependencyResolutionManagement {
versionCatalogs {
dep {
alias('threetenbp').to('org.threeten:threetenbp:1.5.2')
alias('junit-core').to('junit:junit:4.13.2')
}
plugin {
alias('jetbrains-kotlin').to('org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10')
alias('jetbrains-dokka').to('org.jetbrains.dokka:dokka-gradle-plugin:1.5.0')
alias('nexus-publish').to('io.github.gradle-nexus:publish-plugin:1.1.0')
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}