Repository: wicket Updated Branches: refs/heads/wicket-8.x 6508189a4 -> 02285469c
Fix org.junit as resolution:=optional Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/02285469 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/02285469 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/02285469 Branch: refs/heads/wicket-8.x Commit: 02285469c1c89bb98a500828542faf0ef2fcab3b Parents: 6508189 Author: Subrahmanyam Sitha <[email protected]> Authored: Thu Sep 6 16:17:09 2018 +0530 Committer: Andrea Del Bene <[email protected]> Committed: Sat Sep 8 19:24:24 2018 +0200 ---------------------------------------------------------------------- pom.xml | 4 ++-- wicket-core/pom.xml | 1 + wicket-util/pom.xml | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/02285469/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c6d9286..3bab41b 100644 --- a/pom.xml +++ b/pom.xml @@ -735,8 +735,8 @@ <instructions> <Export-Package>*</Export-Package> <Import-Package>org.apache.wicket*, - org.junit*;resolution:=optional, - junit.framework*;resolution:=optional</Import-Package> + org.junit*, + junit.framework*</Import-Package> <DynamicImport-Package>*</DynamicImport-Package> <_nouses>true</_nouses> </instructions> http://git-wip-us.apache.org/repos/asf/wicket/blob/02285469/wicket-core/pom.xml ---------------------------------------------------------------------- diff --git a/wicket-core/pom.xml b/wicket-core/pom.xml index ae219f6..e57bdc8 100644 --- a/wicket-core/pom.xml +++ b/wicket-core/pom.xml @@ -41,6 +41,7 @@ <artifactId>junit</artifactId> <!-- provided because of WicketTester --> <scope>provided</scope> + <optional>true</optional> </dependency> <dependency> <groupId>org.hamcrest</groupId> http://git-wip-us.apache.org/repos/asf/wicket/blob/02285469/wicket-util/pom.xml ---------------------------------------------------------------------- diff --git a/wicket-util/pom.xml b/wicket-util/pom.xml index dd94d04..a6d4a02 100755 --- a/wicket-util/pom.xml +++ b/wicket-util/pom.xml @@ -31,6 +31,7 @@ <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>provided</scope> + <optional>true</optional> </dependency> <dependency> <groupId>commons-fileupload</groupId>
