HanSolo / medusa

A JavaFX library for Gauges
Apache License 2.0
687 stars 129 forks source link

[question] java: module not found: eu.hansolo.medusa #210

Closed sblantipodi closed 3 years ago

sblantipodi commented 3 years ago

Hi all, I'm trying to use the medusa gauges.

I have added those lines to my pom.xml

eu.hansolo Medusa 16.0.0

and this to my module-info.java requires eu.hansolo.medusa;

I can compile use mvn clean install but I cannot run my main file from intellij. I get this error: java: module not found: eu.hansolo.medusa

Any idea?

Thanks

sblantipodi commented 3 years ago

the strange thing is that if I rollback to version 11.7 it works no problem.

HanSolo commented 3 years ago

I needed to change the artifact id to medusa again for some ci reasons, so could you try to use:

<dependency>
  <groupId>eu.hansolo</groupId>
  <artifactId>medusa</artifactId>
  <version>16.0.1</version>
</dependency>

That should work I hope...

sblantipodi commented 3 years ago

Ok it worked thanks