Help? Code (Text): name: Galaxy main: com.galaxy.io.Core version: 2.7 author: Jake_ commands: settabname: description: Sets your tab name. resettabname: description: Resets your tab name. alert: description: Creates a chat alert. destroy: description: Removes user from admin list and bans them (Freedom Only). buildinfo: description: Displays build information.
commands require a 'usage: ' tab: Code (Text): name: Galaxy main: com.galaxy.io.Core version: 2.7 author: Jake_ commands: settabname: description: Sets your tab name. usage: /<command> resettabname: description: Resets your tab name. usage: /<command> alert: description: Creates a chat alert. usage: /<command> destroy: description: Removes user from admin list and bans them (Freedom Only). usage: /<command> buildinfo: description: Displays build information. usage: /<command>
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:152) ~[Spigot.jar:git-Spigot-54ec0b8-1ac133e] at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:133) [Spigot.jar:git-Spigot-54ec0b8-1ac133e] at org.bukkit.craftbukkit.v1_11_R1.CraftServer.loadPlugins(CraftServer.java:301) [Spigot.jar:git-Spigot-54ec0b8-1ac133e] at net.minecraft.server.v1_11_R1.DedicatedServer.init(DedicatedServer.java:204) [Spigot.jar:git-Spigot-54ec0b8-1ac133e] at net.minecraft.server.v1_11_R1.MinecraftServer.run(MinecraftServer.java:544) [Spigot.jar:git-Spigot-54ec0b8-1ac133e] at java.lang.Thread.run(Unknown Source) [?:1.8.0_121] Caused by: java.io.FileNotFoundException: Jar does not contain plugin.yml
put it in you actual project folder or if your using maven (which you are not) put it in src/main/resources
No, you select your plugin.yml, press CTRL + X, select your project folder (which is in this case PEXPrefix) and then press CTRL + V
Make sure to add something like this in your pom.xml Code (Text): <resources> <resource> <directory>src/main/resources</directory> <!-- Keeping filtering at true here reduces plugin.yml redundancy! --> <filtering>true</filtering> <includes> <include>plugin.yml</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <!-- Keep filtering at false for other resources to prevent bad magic --> <filtering>false</filtering> <excludes> <exclude>**/*.java</exclude> <exclude>plugin.yml</exclude> </excludes> </resource> </resources>
Put the file in <root folder, e.g. project name>/src/main/resources. why would that ever be a thing, if i may ask? he never specified he isn't nor if he is. if he uses maven he doesnt "export", he builds using maven. sorry what? they don't. it doesn't tho.
It clearly says it all in the error message... The yml file is not found. wich means A: wrong directory B: wrong filename C: no included at export