When using the maven-dependency-plugin version 3.3.0, it's downloading log4j 1.2.12 as a dependency, which is causing security concerns. Version 3.3.0 is the latest version of the plugin. Is there a way to disable this dependency?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>...</configuration>
</execution>
</executions>
</plugin>