Add dev-tools dependency for commons (#7858)

Motivation:

We need to add a dev-tools dependecy for commons as otherwise we may fail to fetch it before we try to use it.

Modifications:

Add dependency.

Result:

Fixes https://github.com/netty/netty/issues/7842
This commit is contained in:
Norman Maurer 2018-04-10 10:37:02 +02:00 committed by GitHub
parent 587afddb27
commit 5ab8342798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,6 +75,15 @@
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
<!-- Add dependency on dev-tools as otherwise the build will fail if not installed first manually -->
<!-- See https://github.com/netty/netty/issues/7842 -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-dev-tools</artifactId>
<version>${project.version}</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>