You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2020/01/10 13:11:33 UTC

[syncope] branch master updated (856198d -> 95089d2)

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git.


    from 856198d  Fixing default JaCoCo / Sonar settings
     new 3ca5346  Upgrading docker-maven-plugin
     new 95089d2  Upgrading Wicket

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/test/java/org/apache/syncope/fit/console/LogsITCase.java      | 3 +++
 pom.xml                                                               | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)


[syncope] 01/02: Upgrading docker-maven-plugin

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 3ca5346192dad6ad4b66c71c2a2edd9ca628b338
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Fri Jan 10 08:00:32 2020 +0100

    Upgrading docker-maven-plugin
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index b7c7463..832a4b0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2106,7 +2106,7 @@ under the License.
         <plugin>
           <groupId>io.fabric8</groupId>
           <artifactId>docker-maven-plugin</artifactId>
-          <version>0.31.0</version>
+          <version>0.32.0</version>
         </plugin>
 
         <plugin>


[syncope] 02/02: Upgrading Wicket

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 95089d2f61b34a005488c46328c94ef37e614db4
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Fri Jan 10 14:08:50 2020 +0100

    Upgrading Wicket
---
 .../src/test/java/org/apache/syncope/fit/console/LogsITCase.java       | 3 +++
 pom.xml                                                                | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/fit/core-reference/src/test/java/org/apache/syncope/fit/console/LogsITCase.java b/fit/core-reference/src/test/java/org/apache/syncope/fit/console/LogsITCase.java
index f039075..6344e5c 100644
--- a/fit/core-reference/src/test/java/org/apache/syncope/fit/console/LogsITCase.java
+++ b/fit/core-reference/src/test/java/org/apache/syncope/fit/console/LogsITCase.java
@@ -29,6 +29,7 @@ import org.apache.wicket.ajax.markup.html.AjaxFallbackLink;
 import org.apache.wicket.core.util.lang.PropertyResolver;
 import org.apache.wicket.markup.html.WebMarkupContainer;
 import org.apache.wicket.markup.html.form.DropDownChoice;
+import org.apache.wicket.markup.html.form.Form;
 import org.apache.wicket.markup.html.list.ListItem;
 import org.apache.wicket.util.visit.IVisit;
 import org.junit.jupiter.api.BeforeEach;
@@ -61,6 +62,7 @@ public class LogsITCase extends AbstractConsoleITCase {
         Component result = searchLog(KEY, CONTAINER_PATH, "io.swagger");
         assertNotNull(result);
 
+        TESTER.getRequest().setMethod(Form.METHOD_GET);
         TESTER.getRequest().addParameter(
                 result.getPageRelativePath() + ":fields:1:field:dropDownChoiceField", "6");
         TESTER.assertComponent(
@@ -88,6 +90,7 @@ public class LogsITCase extends AbstractConsoleITCase {
         Component result = searchLog(KEY, CONTAINER_PATH, "org.apache.wicket");
         assertNotNull(result);
 
+        TESTER.getRequest().setMethod(Form.METHOD_GET);
         TESTER.getRequest().addParameter(
                 result.getPageRelativePath() + ":fields:1:field:dropDownChoiceField", "6");
         TESTER.assertComponent(
diff --git a/pom.xml b/pom.xml
index 832a4b0..e52ca52 100644
--- a/pom.xml
+++ b/pom.xml
@@ -481,7 +481,7 @@ under the License.
     <jsplumb.version>2.0.7</jsplumb.version>
     <chartjs.version>1.0.2</chartjs.version>
     
-    <wicket.version>8.6.1</wicket.version>
+    <wicket.version>8.7.0</wicket.version>
     <wicket-jqueryui.version>8.6.0</wicket-jqueryui.version>
     <wicket-bootstrap.version>2.0.11</wicket-bootstrap.version>
     <wicket-spring-boot.version>2.1.8</wicket-spring-boot.version>