File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ plugins {
22 java
33 `maven- publish`
44 idea
5+ id(" dev.plex.module" ) version " 1.0"
56}
67
78group = " dev.plex"
@@ -36,9 +37,9 @@ dependencies {
3637 implementation(" dev.plex:server:1.6" )
3738 implementation(" org.json:json:20251224" )
3839 implementation(" org.reflections:reflections:0.10.2" )
39- implementation (" org.eclipse.jetty:jetty-server:12.1.9" )
40- implementation (" org.eclipse.jetty.ee10:jetty-ee10-servlet:12.1.9" )
41- implementation (" org.eclipse.jetty:jetty-proxy:12.1.9" )
40+ plexLibrary (" org.eclipse.jetty:jetty-server:12.1.9" )
41+ plexLibrary (" org.eclipse.jetty.ee10:jetty-ee10-servlet:12.1.9" )
42+ plexLibrary (" org.eclipse.jetty:jetty-proxy:12.1.9" )
4243 implementation(" com.github.MilkBowl:VaultAPI:1.7.1" ) {
4344 exclude(" org.bukkit" , " bukkit" )
4445 }
Original file line number Diff line number Diff line change 1+ pluginManagement {
2+ repositories {
3+ maven(" https://nexus.telesphoreo.me/repository/gradle-plugins-releases/" )
4+ maven(" https://nexus.telesphoreo.me/repository/gradle-plugins-snapshots/" )
5+ gradlePluginPortal()
6+ mavenCentral()
7+ }
8+ resolutionStrategy {
9+ eachPlugin {
10+ if (requested.id.id == " dev.plex.module" ) {
11+ useModule(" dev.plex:plex-modules-gradle-plugin:${requested.version} " )
12+ }
13+ }
14+ }
15+ }
16+
117rootProject.name = " Module-HTTPD"
218
You can’t perform that action at this time.
0 commit comments