Plex-FAWE/buildSrc/src/main/kotlin/CommonConfig.kt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1.1 KiB
Kotlin
Raw Normal View History

2019-08-26 04:45:03 +00:00
import org.gradle.api.Project
import org.gradle.kotlin.dsl.repositories
fun Project.applyCommonConfiguration() {
group = rootProject.group
version = rootProject.version
repositories {
mavenCentral()
mavenLocal()
maven { url = uri("https://mvn.intellectualsites.com/content/groups/public/") }
maven { url = uri("https://plotsquared.com/mvn/") }
maven { url = uri("https://maven.enginehub.org/repo/")
content {
excludeGroup("net.milkbowl.vault")
}
}
2019-08-26 04:45:03 +00:00
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }
maven { url = uri("https://ci.athion.net/plugin/repository/tools/") }
2019-08-26 04:45:03 +00:00
maven { url = uri("https://repo.destroystokyo.com/repository/maven-public") }
ivy { url = uri("https://ci.athion.net/job")
patternLayout {
2019-08-26 05:03:58 +00:00
artifact("/[organisation]/[revision]/artifact/[module].[ext]")
2019-08-26 04:45:03 +00:00
}}
}
2019-08-26 04:45:03 +00:00
configurations.all {
resolutionStrategy {
2020-07-14 02:50:59 +00:00
cacheChangingModulesFor(5, "MINUTES")
2019-08-26 04:45:03 +00:00
}
}
}