Exlude package from maven dependency

352 Views Asked by At

I have error java: module com.example.learningfx reads package jfxtras.labs.util.event from both vworkflows.fx and jfxtras.labs and I think I need to exclude package from jfxtras.labs or vworkflow.fx. Jow can I not include some packages from dependency? Do I need to make this in pom.xml or module-info.java? I use maven and IntelliJ. I think there is already some questions like this but I don't find it

2

There are 2 best solutions below

1
On

You can only include/exclude whole dependencies, not packages from dependencies.

2
On

See https://maven.apache.org/pom.html#Exclusions

You do not provide complete groupId:artifactId:version coordinates, so the example cannot be exact:

<dependencies>
  <dependency>
    <groupId>...</groupId>
    <artifactId>vworkflows.fx</artifactId>
    <version>...</version>
    <exclusions>
      <exclusion>
        <groupId>org.jfxtras</groupId>
        <artifactId>jfxtras.labs.util.event</artifactId>
      </exclusion>
    </exclusions>
  </dependency>
...