How can I compile a plugin in InteliJ?

Title.
19 Replies
Snow Kit
Snow Kit3mo ago
you setup a task that runs maven package or gradle build
qvaras
qvarasOP3mo ago
this?
No description
qvaras
qvarasOP3mo ago
I get this while loading up the server with the built plugin https://mclo.gs/SNGZQkS
mclo.gs
Unknown Log [#SNGZQkS]
15 lines
Snow Kit
Snow Kit3mo ago
maybe you'd need to use gradle shadowJar idk make sure you use the bigger file if there's 2 jars in the build output folder
qvaras
qvarasOP3mo ago
nope, same error
Snow Kit
Snow Kit3mo ago
are there two .jar files?
qvaras
qvarasOP3mo ago
no only one
hawtre
hawtre3mo ago
The jar is a zip file, make sure the class for the method you're trying to call actually exists inside If it doesn't then you didn't shade your jar correctly
Loudbook
Loudbook3mo ago
you don't need to use intellij at all here... show the src
Loudbook
Loudbook3mo ago
GitHub
GitHub - SirBlobman/CooldownsX: A plugin that adds configurable coo...
A plugin that adds configurable cooldowns to items. - SirBlobman/CooldownsX
Loudbook
Loudbook3mo ago
you need the api file that's in api/build/libs and obv the file in plugin/build/libs
qvaras
qvarasOP3mo ago
which one of these? as there are 3 of them after I compile
No description
Loudbook
Loudbook3mo ago
First one Make sure you're using shadowJar
qvaras
qvarasOP3mo ago
[21:18:34 ERROR]: [DirectoryProviderSource] Error loading plugin: java.lang.IllegalArgumentException: Directory 'plugins\.paper-remapped\api-6.0.0-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
java.lang.RuntimeException: java.lang.IllegalArgumentException: Directory 'plugins\.paper-remapped\api-6.0.0-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:85) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at net.minecraft.server.Main.main(Main.java:111) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Directory 'plugins\.paper-remapped\api-6.0.0-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
... 10 more
[21:18:34 ERROR]: [DirectoryProviderSource] Error loading plugin: java.lang.IllegalArgumentException: Directory 'plugins\.paper-remapped\api-6.0.0-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
java.lang.RuntimeException: java.lang.IllegalArgumentException: Directory 'plugins\.paper-remapped\api-6.0.0-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:85) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at net.minecraft.server.Main.main(Main.java:111) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.4.jar:1.21.4-118-73f7736]
at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Directory 'plugins\.paper-remapped\api-6.0.0-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
... 10 more
while loading api
Loudbook
Loudbook3mo ago
ugh you did use shadowjar right hmm api doesn't look like a plugin actually which it should be but it's missing the plugin yml
qvaras
qvarasOP3mo ago
yep
qvaras
qvarasOP3mo ago
No description
Loudbook
Loudbook3mo ago
ask the dev!
qvaras
qvarasOP3mo ago
will do Okay, this is an issue with the plugin itself

Did you find this page helpful?