Skip to content

Commit dbfeebe

Browse files
Missing gradle files
1 parent da20c6d commit dbfeebe

File tree

4 files changed

+60
-1
lines changed

4 files changed

+60
-1
lines changed

SkyblockCore-BungeeCord/build.gradle

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+
}

SkyblockCore-BungeeCord/src/main/java/me/illusion/skyblockcore/bungee/SkyblockBungeePlugin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void onEnable() {
5151
private void finishEnable() {
5252
profileCache = new BungeeProfileCache(this);
5353
matchmaker = new BungeeSkyblockMatchmaker(this);
54-
54+
5555
ProxyServer.getInstance().getPluginManager().registerCommand(this, new SimpleSkyblockCommand(this));
5656
}
5757

SkyblockCore-Proxy/build.gradle

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
}

SkyblockCore-Server/build.gradle

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+

0 commit comments

Comments
 (0)