Skip to content

Commit 5849bf0

Browse files
committed
Move Bungee and Sponge modules to separate plugins
1 parent 1c45e41 commit 5849bf0

File tree

12 files changed

+7
-188
lines changed

12 files changed

+7
-188
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ body:
6969
attributes:
7070
label: Additional Server Info
7171
description: |
72-
Do you use a proxy (eg. BungeeCord)? What software do you use and what plugins?
72+
Do you use a proxy (eg. Velocity)? What software do you use and what plugins?
7373
placeholder: |
74-
Example: "I also use BungeeCord with the following plugins: x, y, z"
74+
Example: "I also use Velocity with the following plugins: x, y, z"
7575
validations:
7676
required: false
7777

@@ -80,7 +80,7 @@ body:
8080
label: Checklist
8181
description: Make sure you have followed each of the steps outlined here.
8282
options:
83-
- label: Via plugins are only running on **EITHER** the backend servers (e.g. Paper) **OR** the proxy (e.g. BungeeCord), **not on both**.
83+
- label: Via plugins are only running on **EITHER** the backend servers (e.g. Paper) **OR** the proxy (e.g. Velocity), **not on both**.
8484
required: true
8585
- label: I have included a ViaVersion dump.
8686
required: true

build-logic/src/main/kotlin/vb.base-conventions.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
tasks {
77
// Variable replacements
88
processResources {
9-
filesMatching(listOf("plugin.yml", "META-INF/sponge_plugins.json", "fabric.mod.json", "bungee.yml")) {
9+
filesMatching(listOf("plugin.yml", "fabric.mod.json")) {
1010
expand("version" to project.version, "description" to project.description, "url" to "https://viaversion.com/backwards")
1111
}
1212
}

build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ val main = setOf(
1313
projects.viabackwards,
1414
projects.viabackwardsCommon,
1515
projects.viabackwardsBukkit,
16-
projects.viabackwardsBungee,
17-
projects.viabackwardsFabric,
18-
projects.viabackwardsSponge,
19-
projects.viabackwardsVelocity
16+
projects.viabackwardsVelocity,
17+
projects.viabackwardsFabric
2018
).map { it.dependencyProject }
2119

2220
subprojects {

bungee/build.gradle.kts

Lines changed: 0 additions & 4 deletions
This file was deleted.

bungee/src/main/java/com/viaversion/viabackwards/BungeePlugin.java

Lines changed: 0 additions & 38 deletions
This file was deleted.

bungee/src/main/resources/bungee.yml

Lines changed: 0 additions & 5 deletions
This file was deleted.

gradle/libs.versions.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ checkerQual = "3.39.0"
1414

1515
# Platforms
1616
paper = "1.16.5-R0.1-SNAPSHOT"
17-
bungee = "1.19-R0.1-SNAPSHOT"
18-
sponge = "8.0.0"
1917
velocity = "3.1.1"
2018
fabricLoader = "0.11.6"
2119

@@ -31,7 +29,5 @@ log4j = { group = "org.apache.logging.log4j", name = "log4j-api", version.ref =
3129
checkerQual = { group = "org.checkerframework", name = "checker-qual", version.ref = "checkerQual" }
3230

3331
paper = { group = "com.destroystokyo.paper", name = "paper-api", version.ref = "paper" }
34-
bungee = { group = "net.md-5", name = "bungeecord-api", version.ref = "bungee" }
35-
sponge = { group = "org.spongepowered", name = "spongeapi", version.ref = "sponge" }
3632
velocity = { group = "com.velocitypowered", name = "velocity-api", version.ref = "velocity" }
3733
fabricLoader = { group = "net.fabricmc", name = "fabric-loader", version.ref = "fabricLoader" }

settings.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ dependencyResolutionManagement {
66
repositories {
77
maven("https://repo.viaversion.com")
88
maven("https://repo.papermc.io/repository/maven-public/")
9-
maven("https://oss.sonatype.org/content/repositories/snapshots/")
10-
maven("https://repo.spongepowered.org/maven")
119
mavenCentral()
1210
}
1311
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
@@ -25,9 +23,7 @@ includeBuild("build-logic")
2523

2624
setupViaSubproject("common")
2725
setupViaSubproject("bukkit")
28-
setupViaSubproject("bungee")
2926
setupViaSubproject("velocity")
30-
setupViaSubproject("sponge")
3127
setupViaSubproject("fabric")
3228
setupViaSubproject("template")
3329

sponge/build.gradle.kts

Lines changed: 0 additions & 4 deletions
This file was deleted.

sponge/src/main/java/com/viaversion/viabackwards/SpongePlugin.java

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)