Jan

Results 38 comments of Jan

I had the same issue today on Glowstone 2018.0.1 (downloaded the LTS version from your website today), running on Java 13, trying to load a plugin compiled with --release 11

It's not really long-term support then, is it? Which version should I be using instead? I tried with version 2018.9.0 and the 'latest build', both also downloaded from https://glowstone.net/#downloads, but...

Yes, still the same issue. ``` C:\Users\Test\Minecraft\Servers\Glowstone-1.12.2>java -jar glowstone-2018.10.0-20200302.035422-5.jar 22:36:32 [INFO] This server is running Glowstone version 2018.10.0-SNAPSHOT.83df5ad (MC: 1.12.2) (Implementing API version 1.12.2-R6.0-SNAPSHOT) 22:36:33 [INFO] Recipes: 307 shaped, 63...

Alright, thanks a lot! While you're at it, can I just remind you friendly that updating the dependency version is not enough, you also need to update the asm api...

Hi EpiCanard. Yes this feature is very useful and yes it is also achievable. ScalaLoader can make use of [Eclipse Aether](https://github.com/eclipse/aether-demo) to resolve and download maven artifacts. But I really...

Don't worry about the Readme. This issue has allowed me to really dive deep into this and strucuture my thoughts. I'm leaving the issue open as it can serve as...

Hey there, I recently came across this thread on SpigotMC where one person linked to two other projects which can load dependencies at runtime. They seem to work at the...

> But I don't know how it works exactly. Will it work with ScalaPugin and with ScalaLibrary? Both projects seem to work in different ways: - PDM loads dependencies by...

well yes but you could just do the same thing yourself in your plugin. In your plugin's main class constructor/initializer: ```scala val url: Url = new URL("https://location/of/cats_2.13.jar") val classLoader: ScalaPluginClassLoader...

I made it work using standard PDM, a demo can be found here: https://github.com/Jannyboy11/CatsPlugin. The only reason why this works is that the classloader check is only used in the...