diff options
Diffstat (limited to 'settings.gradle.kts')
-rw-r--r-- | settings.gradle.kts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..6cd218f --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,20 @@ + +pluginManagement { + repositories { + mavenCentral() + gradlePluginPortal() + maven(url = "https://jitpack.io/") { + content { + includeGroupByRegex("(com|io)\\.github\\..+") + } + } + } + resolutionStrategy { + eachPlugin { + when (requested.id.id) { + "ch.fhnw.thga.frege" -> useModule("com.github.romangraef:frege-gradle-plugin:${requested.version}") + } + } + } +} + |