Daniel Stieglitz created NIFI-16249:
---------------------------------------
Summary: Remove duplicated Maven dependencies
Key: NIFI-16249
URL: https://issues.apache.org/jira/browse/NIFI-16249
Project: Apache NiFi
Issue Type: Improvement
Reporter: Daniel Stieglitz
Assignee: Daniel Stieglitz
Per Intellij on top level pom.xml,
{code:java}
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>{code}
is duplicated in module nifi-network-processors and
{code:java}
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>{code}
is duplicated in module nifi-aws-kinesis.
The point of this ticket is to remove the duplicated dependencies from those
modules.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)