Allow OSGi Eclipse and Felix-based tests to run a little further than class not found exceptions; the tests are @Ignore'd still, since they fail for other reasons.
Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/85290864 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/85290864 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/85290864 Branch: refs/heads/LOG4J-1181 Commit: 85290864c048100e75d35b21777fb3665293d18a Parents: 5f9684f Author: Gary Gregory <[email protected]> Authored: Thu Jul 28 22:12:16 2016 -0700 Committer: Gary Gregory <[email protected]> Committed: Thu Jul 28 22:12:16 2016 -0700 ---------------------------------------------------------------------- log4j-core/pom.xml | 10 ++++++++++ pom.xml | 6 ++++++ 2 files changed, 16 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/85290864/log4j-core/pom.xml ---------------------------------------------------------------------- diff --git a/log4j-core/pom.xml b/log4j-core/pom.xml index d911390..d06713d 100644 --- a/log4j-core/pom.xml +++ b/log4j-core/pom.xml @@ -245,6 +245,16 @@ <artifactId>org.apache.felix.framework</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-core</artifactId> + <scope>test</scope> + </dependency> <!-- GELF --> <dependency> <groupId>net.javacrumbs.json-unit</groupId> http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/85290864/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c69ca60..a91c73f 100644 --- a/pom.xml +++ b/pom.xml @@ -622,6 +622,12 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + <version>3.0.24</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>3.4</version>
