-
Notifications
You must be signed in to change notification settings - Fork 176
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
Using CalendarFx 11.5.0 with openJFx 12 facing problem of Module not found #47
Comments
The PRs have been merged. Please try again and let me know if this issue can be closed. |
Actually I feel confident that this resolves this issue. Closing it. |
@dlemmermann Looks like package available through both
Also in
Packages: |
Yes, I am afraid it is. I checked out from GitHub and fixed the bugs
manually in my local workspace and it is working fine now.
…On Fri, Aug 16, 2019 at 3:09 PM Krzysztof Buszowski < ***@***.***> wrote:
@dlemmermann <https://github.com/dlemmermann> Looks like package
available through both mvnrepository and bintray somehow still has
dependency on controlsfx in version 9.0.1-SNAPSHOT:
\--- com.calendarfx:view:11.5.0
+--- org.openjfx:javafx-controls:11-ea+25
| \--- org.openjfx:javafx-graphics:11-ea+25
| \--- org.openjfx:javafx-base:11-ea+25
+--- org.openjfx:javafx-fxml:11-ea+25
| \--- org.openjfx:javafx-controls:11-ea+25 (*)
+--- com.calendarfx:recurrence:11.5.0
| \--- joda-time:joda-time:2.9.1
+--- org.controlsfx:controlsfx:9.0.1-SNAPSHOT FAILED <--------------------------
+--- de.jensd:fontawesomefx-commons:9.1.2
\--- de.jensd:fontawesomefx-fontawesome:4.7.0-9.1.2
\--- de.jensd:fontawesomefx-commons:9.1.2
Also in module-info.java
module com.calendarfx.view {
requires controlsfx;
requires javafx.controls;
requires javafx.fxml;
// (...)
}
Packages:
- https://mvnrepository.com/artifact/com.calendarfx/view/11.5.0
-
https://jcenter.bintray.com/com/calendarfx/view/11.5.0/view-11.5.0.pom
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#47>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAIJDEWQ44ELBW2YOJDIYD3QEZ4FVANCNFSM4HO4PB4A>
.
|
I have used |
I added controlsfx in my module-info.java like
module base.education.ui {
requires common.education.ui;
requires javafx.controls;
requires javafx.media;
requires org.kordamp.ikonli.javafx;
requires java.sql;
requires org.fxyz3d.core;
requires javafx.swing;
requires com.calendarfx.view;
requires com.calendarfx.recurrence;
requires gson;
opens baseImages;
opens base.education.ui to javafx.graphics;
exports base.education.ui;
}
but when using the CalendarView in my module I am facing the following problem
Error occurred during initialization of boot layer
java.lang.module.FindException: Module controlsfx not found, required by com.calendarfx.view
Regards
The text was updated successfully, but these errors were encountered: