generated from bitPogo/kmp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
35 lines (29 loc) · 948 Bytes
/
build.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
/*
* Copyright (c) 2023 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/
import tech.antibytes.gradle.dependency.helper.addCustomRepositories
import tech.antibytes.gradle.dependency.helper.ensureKotlinVersion
import tech.antibytes.gradle.project.config.repositories.Repositories.projectRepositories
plugins {
id("tech.antibytes.gradle.setup")
alias(antibytesCatalog.plugins.gradle.antibytes.dependencyHelper)
alias(antibytesCatalog.plugins.gradle.antibytes.quality)
}
allprojects {
repositories {
mavenCentral()
google()
jcenter()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
addCustomRepositories(projectRepositories)
}
ensureKotlinVersion()
}
tasks.named<Wrapper>("wrapper") {
gradleVersion = "7.5.1"
distributionType = Wrapper.DistributionType.ALL
}