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

Remove JavaFX dependency #215

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

rnayabed
Copy link

@rnayabed rnayabed commented Sep 21, 2021

Fix #198

While using this plugin, it ignores the user specified JavaFX version and uses the one that this depends on (in this case, 16.0.1 depends on JavaFX 16).

Currently, one needs to do the following in order to use their own specific JavaFX version :

<dependency>
  <groupId>eu.hansolo</groupId>
  <artifactId>medusa</artifactId>
  <version>16.0.1</version>
  <exclusions>
    <exclusion>
      <groupId>org.openjfx</groupId>
      <artifactId>*</artifactId>
    </exclusion>
  </exclusions>
</dependency>

This is the same approach used in ControlsFX

While using this plugin, it ignores the user specified JavaFX version and uses the one that this depends on (in this case, 16.0.1 depends on JavaFX 16).

Currently, one needs to do the following in order to use their own specific JavaFX version :

```
<dependency>
            <groupId>eu.hansolo</groupId>
            <artifactId>medusa</artifactId>
            <version>16.0.1</version>
            <exclusions>
                <exclusion>
                    <groupId>org.openjfx</groupId>
                    <artifactId>javafx-graphics</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.openjfx</groupId>
                    <artifactId>javafx-controls</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.openjfx</groupId>
                    <artifactId>javafx-base</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.openjfx</groupId>
                    <artifactId>javafx-swing</artifactId>
                </exclusion>
            </exclusions>
</dependency>
```
@rnayabed rnayabed changed the title Remove JavaFX dependency Fix #198 Remove JavaFX dependency Sep 21, 2021
@rnayabed rnayabed changed the title Fix #198 Remove JavaFX dependency Remove JavaFX dependency Sep 21, 2021
@rnayabed
Copy link
Author

@HanSolo thoughts?

@rnayabed
Copy link
Author

rnayabed commented Oct 8, 2021

@HanSolo ???

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

Successfully merging this pull request may close these issues.

Remove Maven dependencies on javafx
1 participant