Repository: logging-log4j2 Updated Branches: refs/heads/master dfe0b16a6 -> 7e476113c
Revert pom changes Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/7e476113 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/7e476113 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/7e476113 Branch: refs/heads/master Commit: 7e476113c3de9164cc64cc8c3044818453e5b408 Parents: dfe0b16 Author: rgoers <[email protected]> Authored: Sun Sep 25 21:32:14 2016 -0700 Committer: rgoers <[email protected]> Committed: Sun Sep 25 21:32:14 2016 -0700 ---------------------------------------------------------------------- log4j-1.2-api/pom.xml | 6 ++++++ log4j-core/pom.xml | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/7e476113/log4j-1.2-api/pom.xml ---------------------------------------------------------------------- diff --git a/log4j-1.2-api/pom.xml b/log4j-1.2-api/pom.xml index 779f050..2a5eb01 100644 --- a/log4j-1.2-api/pom.xml +++ b/log4j-1.2-api/pom.xml @@ -33,6 +33,12 @@ <projectDir>/log4j12-api</projectDir> </properties> <dependencies> + <!-- Command line for configuration file conversion --> + <dependency> + <groupId>com.beust</groupId> + <artifactId>jcommander</artifactId> + <optional>true</optional> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/7e476113/log4j-core/pom.xml ---------------------------------------------------------------------- diff --git a/log4j-core/pom.xml b/log4j-core/pom.xml index 6142dad..c7618df 100644 --- a/log4j-core/pom.xml +++ b/log4j-core/pom.xml @@ -1,5 +1,4 @@ <?xml version="1.0" encoding="UTF-8"?> - <!-- ~ Licensed to the Apache Software Foundation (ASF) under one or more ~ contributor license agreements. See the NOTICE file distributed with @@ -144,6 +143,12 @@ <artifactId>commons-csv</artifactId> <optional>true</optional> </dependency> + <!-- Command line for TCP and UDP servers --> + <dependency> + <groupId>com.beust</groupId> + <artifactId>jcommander</artifactId> + <optional>true</optional> + </dependency> <!-- TEST DEPENDENCIES -->
