From cd9a898aadab4e8d51cd7f5b84b59ae9381177d5 Mon Sep 17 00:00:00 2001 From: Johno Crawford Date: Sun, 19 Feb 2017 11:41:55 +0100 Subject: [PATCH] Add a 'bill of materials' project for Maven users Motivation: Projects may import multiple libraries which use different versions of Netty. Modifications: Add 'netty-bom' meta-project that contains the other projects in a dependencyManagement section. Result: Developers can import the BOM to enforce specific version of Netty. --- bom/pom.xml | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++++ pom.xml | 1 + 2 files changed, 99 insertions(+) create mode 100644 bom/pom.xml diff --git a/bom/pom.xml b/bom/pom.xml new file mode 100644 index 0000000000..030bf05af0 --- /dev/null +++ b/bom/pom.xml @@ -0,0 +1,98 @@ + + + + + 4.0.0 + + io.netty + netty-parent + 4.0.45.Final-SNAPSHOT + + + netty-bom + pom + + Netty/BOM + + + + + + ${project.groupId} + netty-buffer + ${project.version} + + + ${project.groupId} + netty-codec + ${project.version} + + + ${project.groupId} + netty-codec-haproxy + ${project.version} + + + ${project.groupId} + netty-codec-http + ${project.version} + + + ${project.groupId} + netty-codec-socks + ${project.version} + + + ${project.groupId} + netty-common + ${project.version} + + + ${project.groupId} + netty-handler + ${project.version} + + + ${project.groupId} + netty-transport + ${project.version} + + + ${project.groupId} + netty-transport-rxtx + ${project.version} + + + ${project.groupId} + netty-transport-sctp + ${project.version} + + + ${project.groupId} + netty-transport-udt + ${project.version} + + + ${project.groupId} + netty-example + ${project.version} + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml index 9cc141feb9..79c7bdff0b 100644 --- a/pom.xml +++ b/pom.xml @@ -272,6 +272,7 @@ testsuite-osgi microbench all + bom tarball