File tree 4 files changed +60
-1
lines changed
src/main/java/me/illusion/skyblockcore/bungee
4 files changed +60
-1
lines changed Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id ' java'
3
+ }
4
+
5
+ group = ' me.illusion'
6
+ version = ' 1.0-SNAPSHOT'
7
+
8
+ repositories {
9
+ mavenCentral()
10
+
11
+ // spigot repo
12
+ maven { url ' https://oss.sonatype.org/content/repositories/snapshots' }
13
+ // This lets gradle find the BungeeCord files online
14
+
15
+ }
16
+
17
+ dependencies {
18
+ compileOnly ' net.md-5:bungeecord-api:1.19-R0.1-SNAPSHOT'
19
+
20
+ compileOnly(' org.projectlombok:lombok:1.18.28' )
21
+ annotationProcessor(' org.projectlombok:lombok:1.18.28' )
22
+
23
+ implementation(project(' :SkyblockCore-Common' ))
24
+ implementation(project(' :SkyblockCore-Proxy' ))
25
+ }
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public void onEnable() {
51
51
private void finishEnable () {
52
52
profileCache = new BungeeProfileCache (this );
53
53
matchmaker = new BungeeSkyblockMatchmaker (this );
54
-
54
+
55
55
ProxyServer .getInstance ().getPluginManager ().registerCommand (this , new SimpleSkyblockCommand (this ));
56
56
}
57
57
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id ' java'
3
+ }
4
+
5
+ group = ' me.illusion'
6
+ version = ' 1.0-SNAPSHOT'
7
+
8
+ repositories {
9
+ mavenCentral()
10
+ }
11
+
12
+ dependencies {
13
+ implementation(project(' :SkyblockCore-Common' ))
14
+ }
15
+
16
+ test {
17
+ useJUnitPlatform()
18
+ }
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id ' com.github.johnrengelman.shadow' version ' 8.1.1'
3
+ id ' java'
4
+ }
5
+
6
+ group = ' me.illusion'
7
+ version = ' 1.0-SNAPSHOT'
8
+
9
+ repositories {
10
+ mavenCentral()
11
+ }
12
+
13
+ dependencies {
14
+ implementation(project(" :SkyblockCore-Common" ))
15
+ }
16
+
You can’t perform that action at this time.
0 commit comments