Skip to content

Commit

Permalink
Removed individual netty dependencies in favour of netty-all (openmes…
Browse files Browse the repository at this point in the history
  • Loading branch information
merlimat authored and sijie committed Jan 23, 2018
1 parent b4f46fe commit 0370405
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions package/src/assemble/bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
<directory>${basedir}/../bin</directory>
<fileMode>755</fileMode>
</fileSet>

<fileSet>
<directory>${basedir}/..</directory>

<includes>
<include>**/driver-*/deploy/**</include>
<include>**/driver-*/*.yaml</include>
</includes>

<excludes>
<exclude>**/.terraform/**</exclude>
<exclude>**/terraform.tfstate</exclude>
Expand All @@ -58,7 +58,7 @@
</excludes>
</fileSet>
</fileSets>

<files>
<file>
<source>${basedir}/../README.md</source>
Expand All @@ -80,7 +80,24 @@
<useProjectArtifact>false</useProjectArtifact>
<!-- Include 'groupId' in the dependencies Jar names to better identify
the provenance of the jar -->
<outputFileNameMapping>${artifact.groupId}-${artifact.artifactId}-${artifact.version}${dashClassifier?}.${artifact.extension}</outputFileNameMapping>
<outputFileNameMapping>${artifact.groupId}-${artifact.artifactId}-${artifact.version}${dashClassifier?}.${artifact.extension}</outputFileNameMapping>

<excludes>
<!-- All these dependencies are already included in netty-all -->
<exclude>io.netty:netty-common</exclude>
<exclude>io.netty:netty-buffer</exclude>
<exclude>io.netty:netty-codec-http</exclude>
<exclude>io.netty:netty-codec</exclude>
<exclude>io.netty:netty-transport</exclude>
<exclude>io.netty:netty-handler</exclude>
<exclude>io.netty:netty-transport-native-epoll</exclude>
<exclude>io.netty:netty-transport-native-kqueue</exclude>
<exclude>io.netty:netty-codec-http</exclude>
<exclude>io.netty:netty-codec-dns</exclude>
<exclude>io.netty:netty-resolver</exclude>
<exclude>io.netty:netty-resolver-dns</exclude>
<exclude>io.netty:netty-transport-native-unix-common</exclude>
</excludes>
</dependencySet>
</dependencySets>
</assembly>

0 comments on commit 0370405

Please sign in to comment.