Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
plugins { id("gg.grounds.base-conventions") version "0.5.1" }
plugins { id("gg.grounds.base-conventions") version "0.6.0-runtime-SNAPSHOT" }
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ repositories {
dependencies {
protobuf("gg.grounds:library-grpc-contracts-config:0.2.0")
compileOnly("org.slf4j:slf4j-api:2.0.17")
implementation("com.google.protobuf:protobuf-java:4.34.1")
implementation("io.nats:jnats:2.25.2")
implementation("tools.jackson.core:jackson-databind:3.1.2")
implementation("tools.jackson.module:jackson-module-kotlin:3.1.2")
testImplementation("org.slf4j:slf4j-api:2.0.17")
testImplementation("com.google.protobuf:protobuf-java:4.34.1")
testImplementation(kotlin("test"))
}
8 changes: 2 additions & 6 deletions paper/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
plugins { id("gg.grounds.paper-conventions") }
plugins { id("gg.grounds.paper-runtime-consumer-conventions") }

dependencies {
implementation(project(":common"))
implementation("io.grpc:grpc-netty-shaded:1.80.0")
implementation("io.grpc:grpc-stub:1.80.0")
}
dependencies { implementation(project(":common")) }
2 changes: 2 additions & 0 deletions paper/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ author: Grounds Development Team and contributors
main: gg.grounds.config.ConfigPaperPlugin

api-version: "1.21"
depend:
- GroundsPluginRuntime
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ include("common", "velocity", "paper", "example-paper", "example-velocity")

pluginManagement {
repositories {
mavenLocal()
maven {
url = uri("https://maven.pkg.github.com/groundsgg/*")
credentials {
Expand Down
8 changes: 2 additions & 6 deletions velocity/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
plugins { id("gg.grounds.velocity-conventions") }
plugins { id("gg.grounds.velocity-runtime-consumer-conventions") }

dependencies {
implementation(project(":common"))
implementation("io.grpc:grpc-netty-shaded:1.80.0")
implementation("io.grpc:grpc-stub:1.80.0")
}
dependencies { implementation(project(":common")) }
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import com.google.inject.Inject
import com.velocitypowered.api.event.Subscribe
import com.velocitypowered.api.event.proxy.ProxyInitializeEvent
import com.velocitypowered.api.event.proxy.ProxyShutdownEvent
import com.velocitypowered.api.plugin.Dependency
import com.velocitypowered.api.plugin.Plugin
import com.velocitypowered.api.plugin.annotation.DataDirectory
import com.velocitypowered.api.proxy.ProxyServer
Expand All @@ -22,6 +23,7 @@ import org.slf4j.Logger
description = "Runtime configuration management for Velocity",
authors = ["Grounds Development Team and contributors"],
url = "https://github.com/groundsgg/plugin-config",
dependencies = [Dependency(id = "plugin-grounds-runtime")],
)
class ConfigVelocityPlugin
@Inject
Expand Down