离诌
26d6eda0de
version: remove Duplicating managed version (#10329)
Motivation:
remove Duplicating managed version, cause it is already defined in the parent project.
Modification:
- origin
```
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-dev-tools</artifactId>
<scope>test</scope>
<version>${project.version}</version>
<optional>true</optional>
</dependency>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.10</version>
</plugin>
```
- after modify
```
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-dev-tools</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
```
Result:
remove Duplicating managed version