You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2018/09/08 17:43:14 UTC

wicket git commit: WICKET-6584 Fix org.junit as resolution:=optional

Repository: wicket
Updated Branches:
  refs/heads/master 4aa26cf40 -> d4818a4ff


WICKET-6584 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/d4818a4f
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/d4818a4f
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/d4818a4f

Branch: refs/heads/master
Commit: d4818a4ff2301bf75e39faa3d904a64c5807fb33
Parents: 4aa26cf
Author: Subrahmanyam Sitha <Su...@planonsoftware.com>
Authored: Thu Sep 6 16:17:09 2018 +0530
Committer: Andrea Del Bene <an...@gmail.com>
Committed: Sat Sep 8 19:42:51 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/d4818a4f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 4190dd2..da33efc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -766,8 +766,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/d4818a4f/wicket-core/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-core/pom.xml b/wicket-core/pom.xml
index f3e4d52..d9d8342 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/d4818a4f/wicket-util/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-util/pom.xml b/wicket-util/pom.xml
index 2720728..a0ac143 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>