Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issues when moving from version 11.7 to version 16.0.0 #211

Closed
eitan-rosenberg opened this issue Aug 28, 2021 · 2 comments
Closed

Issues when moving from version 11.7 to version 16.0.0 #211

eitan-rosenberg opened this issue Aug 28, 2021 · 2 comments

Comments

@eitan-rosenberg
Copy link

Hello,

I am trying to use version 16.0.0 and I get:

Error occurred during initialization of boot layer
java.lang.module.FindException: Error reading module: G:\MyMavenRepo\eu\hansolo\Medusa\16.0.0\Medusa-16.0.0.jar
Caused by: java.lang.module.InvalidModuleDescriptorException: Package eu.hansolo.Medusa not found in module

This is my pom, and it works fine with version 11.7.
pom.zip

<properties>
	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	<maven.compiler.target>16</maven.compiler.target>
	<maven.compiler.source>16</maven.compiler.source>
</properties>

<dependencies>

	<dependency>
		<groupId>org.openjfx</groupId>
		<artifactId>javafx-web</artifactId>
		<version>16</version>
	</dependency>

	<dependency>
		<groupId>org.openjfx</groupId>
		<artifactId>javafx-swing</artifactId>
		<version>16</version>
	</dependency>

	<dependency>

		<groupId>eu.hansolo</groupId>
		<artifactId>Medusa</artifactId>
		<!-- <version>11.7</version> -->
		<version>16.0.0</version>

		<exclusions>
			<exclusion>
				<groupId>*</groupId>
				<artifactId>*</artifactId>
			</exclusion>
		</exclusions>

	</dependency>

</dependencies>

Any response will be welcome.

Regards.

@HanSolo
Copy link
Owner

HanSolo commented Aug 28, 2021

I needed to change the artifact id to medusa so please try this:
<dependency> <groupId>eu.hansolo</groupId> <artifactId>medusa</artifactId> <version>16.0.1</version> </dependency>

@eitan-rosenberg
Copy link
Author

Hello,

That did the trick.

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants