Skip to content

Commit

Permalink
Missing release modules in netty-all project
Browse files Browse the repository at this point in the history
Motivation:

codec-redis and codec-xml are release modules and should be included in netty-all.

Modifications:

Add codec-redis and codec-xml modules to netty-all pom.

Result:

codec-redis and codec-xml can be used with the netty-all artifact.
  • Loading branch information
johnou authored and normanmaurer committed Feb 20, 2017
1 parent d0a3877 commit 007e896
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,13 @@
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>netty-codec-redis</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>netty-codec-smtp</artifactId>
Expand All @@ -263,6 +270,13 @@
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>netty-codec-xml</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>netty-common</artifactId>
Expand Down

0 comments on commit 007e896

Please sign in to comment.