mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-04-03 15:13:15 +00:00
19 lines
498 B
Kotlin
19 lines
498 B
Kotlin
import org.gradle.api.Project
|
|
import org.gradle.kotlin.dsl.repositories
|
|
|
|
fun Project.applyCommonConfiguration() {
|
|
group = rootProject.group
|
|
version = rootProject.version
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = uri("https://maven.sk89q.com/repo/") }
|
|
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }
|
|
}
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
cacheChangingModulesFor(5, "minutes")
|
|
}
|
|
}
|
|
}
|