Skip to content

Commit

Permalink
Remove plugin annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
wtlgo committed Jun 13, 2024
1 parent 3bf42e5 commit 2d09068
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ dependencies {
compileOnly "org.spigotmc:spigot-api:1.19.3-R0.1-SNAPSHOT"
compileOnly "net.md-5:bungeecord-api:1.19-R0.1-SNAPSHOT"
compileOnly 'com.velocitypowered:velocity-api:3.3.0-SNAPSHOT'
annotationProcessor 'com.velocitypowered:velocity-api:3.3.0-SNAPSHOT'

compileOnly "com.github.NuVotifier.NuVotifier:nuvotifier-bukkit:2.7.2"
compileOnly "com.github.NuVotifier.NuVotifier:nuvotifier-bungeecord:2.7.2"
Expand Down Expand Up @@ -100,7 +99,7 @@ processResources {
inputs.properties props
filteringCharset "UTF-8"

filesMatching(["plugin.yml", "bungee.yml"]) {
filesMatching(["plugin.yml", "bungee.yml", "velocity-plugin.json"]) {
expand props
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
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;
import dev.jeka.core.api.depmanagement.JkDependencySet;
Expand All @@ -25,13 +23,6 @@
/**
* The main Velocity plugin class
*/
@Plugin(id = "mikchan-no-vote-receiver",
name = "MikChanNoVoteReceiver",
version = "0.1.0-SNAPSHOT",
url = "https://github.com/MikChanNoPlugins/VoteReceiver",
description = "Converts various monitoring vote systems to Votifier",
authors = {"George Endo (wtlgo / MikChan)"},
dependencies = {@Dependency(id = "nuvotifier")})
public class VoteReceiverVelocityPluginWrapper {
private final ProxyServer server;

Expand Down

0 comments on commit 2d09068

Please sign in to comment.