commit fbe10c2572aec4a94f2caac8826f64a884d360b0 Author: TronaxYT Date: Wed Oct 30 21:38:57 2024 +0100 Initial commit diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..3153ca2 --- /dev/null +++ b/pom.xml @@ -0,0 +1,164 @@ + + + 4.0.0 + + xyz.tronax + ZalmikConnectVelocity + 1.0 + jar + + ZalmikConnectVelocity + + + 17 + UTF-8 + + + + + release + + + + org.apache.maven.plugins + maven-source-plugin + 3.3.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.2.4 + + + sign-artifacts + verify + + sign + + + + + + + + src/main/resources + true + + + + + + + + clean package + + + ${project.basedir}/src/main/resources + true + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.13.0 + + ${java.version} + ${java.version} + + + + org.codehaus.mojo + templating-maven-plugin + 1.0.0 + + + filter-src + + filter-sources + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.12.1 + + + net.trajano.wagon + wagon-git + 2.0.4 + + + org.apache.maven.doxia + doxia-module-markdown + 1.12.0 + + + + + org.apache.maven.plugins + maven-release-plugin + 3.0.1 + + true + @{project.version} + [RELEASE] + install deploy site-deploy + + release + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.6.3 + + + + + + + papermc-repo + https://repo.papermc.io/repository/maven-public/ + + + + + + com.velocitypowered + velocity-api + 3.3.0-SNAPSHOT + provided + + + diff --git a/src/main/java/xyz/tronax/zalmikConnectVelocity/ZalmikConnectVelocity.java b/src/main/java/xyz/tronax/zalmikConnectVelocity/ZalmikConnectVelocity.java new file mode 100644 index 0000000..2c5e5a7 --- /dev/null +++ b/src/main/java/xyz/tronax/zalmikConnectVelocity/ZalmikConnectVelocity.java @@ -0,0 +1,18 @@ +package xyz.tronax.zalmikConnectVelocity; + +import com.google.inject.Inject; +import com.velocitypowered.api.event.proxy.ProxyInitializeEvent; +import com.velocitypowered.api.event.Subscribe; +import com.velocitypowered.api.plugin.Plugin; +import org.slf4j.Logger; + +@Plugin(id = "zalmikconnectvelocity", name = "ZalmikConnectVelocity", version = "1.0", description = "Chest and Hotbar Items!", url = "https://tronax.xyz", authors = {"Tronax_"}) +public class ZalmikConnectVelocity { + + @Inject + private Logger logger; + + @Subscribe + public void onProxyInitialization(ProxyInitializeEvent event) { + } +}