summaryrefslogtreecommitdiff
path: root/settings.gradle.kts
blob: 6cd218f7a12dff671dc222f2040b9bb473818004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}")
            }
        }
    }
}