Repository: incubator-metron Updated Branches: refs/heads/master 81677fd90 -> 4c114a51f
METRON-827: Fix full dev build dependency multi-threading issue with maven (mmiklavc) closes apache/incubator-metron#513 Project: http://git-wip-us.apache.org/repos/asf/incubator-metron/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-metron/commit/4c114a51 Tree: http://git-wip-us.apache.org/repos/asf/incubator-metron/tree/4c114a51 Diff: http://git-wip-us.apache.org/repos/asf/incubator-metron/diff/4c114a51 Branch: refs/heads/master Commit: 4c114a51ff730782f6d0584312d7c100a604e50a Parents: 81677fd Author: mmiklavc <michael.miklav...@gmail.com> Authored: Fri Apr 7 09:27:34 2017 -0600 Committer: Michael Miklavcic <michael.miklav...@gmail.com> Committed: Fri Apr 7 09:27:34 2017 -0600 ---------------------------------------------------------------------- metron-deployment/pom.xml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-metron/blob/4c114a51/metron-deployment/pom.xml ---------------------------------------------------------------------- diff --git a/metron-deployment/pom.xml b/metron-deployment/pom.xml index 1179906..01a7fa0 100644 --- a/metron-deployment/pom.xml +++ b/metron-deployment/pom.xml @@ -46,4 +46,18 @@ </modules> </profile> </profiles> -</project> \ No newline at end of file + <dependencies> + <dependency> + <groupId>org.apache.metron</groupId> + <artifactId>metron-platform</artifactId> + <version>${project.parent.version}</version> + <type>pom</type> + </dependency> + <dependency> + <groupId>org.apache.metron</groupId> + <artifactId>metron-analytics</artifactId> + <version>${project.parent.version}</version> + <type>pom</type> + </dependency> + </dependencies> +</project>