mirror of
https://github.com/plexusorg/Module-HTTPD.git
synced 2026-06-04 09:06:54 +00:00
94cb2a98c4
Also, resolves the long standing issues #2 and #3
17 lines
515 B
Kotlin
17 lines
515 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
maven("https://nexus.telesphoreo.me/repository/gradle-plugins-releases/")
|
|
maven("https://nexus.telesphoreo.me/repository/gradle-plugins-snapshots/")
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.id == "dev.plex.module") {
|
|
useModule("dev.plex:plex-modules-gradle-plugin:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Module-HTTPD" |