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 2021/04/05 07:46:21 UTC

[syncope] branch 2_1_X updated (1884a4c -> eff7e8c)

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

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


    from 1884a4c  Upgrading Swagger UI
     new a007602  Upgrading Wicket
     new eff7e8c  Removing AppVeyor integration

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:
 appveyor.yml                                       | 52 ----------------------
 .../console/panels/search/SearchClausePanel.java   |  2 +-
 pom.xml                                            |  2 +-
 3 files changed, 2 insertions(+), 54 deletions(-)
 delete mode 100644 appveyor.yml

[syncope] 01/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 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit a007602d8dc93592444d3ad0beb3ed0600ab77b5
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Apr 5 09:45:47 2021 +0200

    Upgrading Wicket
---
 .../apache/syncope/client/console/panels/search/SearchClausePanel.java  | 2 +-
 pom.xml                                                                 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/client/console/src/main/java/org/apache/syncope/client/console/panels/search/SearchClausePanel.java b/client/console/src/main/java/org/apache/syncope/client/console/panels/search/SearchClausePanel.java
index 236a65e..fd2fd22 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/panels/search/SearchClausePanel.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/panels/search/SearchClausePanel.java
@@ -122,7 +122,7 @@ public class SearchClausePanel extends FieldPanel<SearchClause> {
         }
 
         default void setFieldAccess(
-                FieldPanel value,
+                FieldPanel<String> value,
                 AjaxTextFieldPanel property,
                 LoadableDetachableModel<List<String>> properties) {
 
diff --git a/pom.xml b/pom.xml
index 3dad900..9dc7cfc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -479,7 +479,7 @@ under the License.
     <jsplumb.version>2.0.7</jsplumb.version>
     <chartjs.version>1.0.2</chartjs.version>
     
-    <wicket.version>8.11.0</wicket.version>
+    <wicket.version>8.12.0</wicket.version>
     <wicket-jqueryui.version>8.11.1</wicket-jqueryui.version>
     <wicket-bootstrap.version>2.0.14</wicket-bootstrap.version>
 

[syncope] 02/02: Removing AppVeyor integration

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

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

commit eff7e8c84af1cc10b139f4445634fb323221837b
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Apr 5 09:46:00 2021 +0200

    Removing AppVeyor integration
---
 appveyor.yml | 52 ----------------------------------------------------
 1 file changed, 52 deletions(-)

diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 9d609f1..0000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,52 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-version: '{build}'
-os: Windows Server 2012
-init:		
- - git config --global core.autocrlf true
-install:
-  # Make unix-compatible patch.exe available to the build by copying it from
-  # Git\usr\bin (that we remove from PATH) to another directory and adding it to
-  # PATH; the reason we copy it is that logic below removes
-  # C:\Program Files\Git\usr\bin from Path to avoid build issue resulting from
-  # sh.exe being on the path.
-  - cmd: mkdir "C:\Program Files\PatchFromGit"
-  - ps: copy "C:\Program Files\Git\usr\bin\patch.exe" "C:\Program Files\PatchFromGit"
-  - ps: copy "C:\Program Files\Git\usr\bin\msys*.dll" "C:\Program Files\PatchFromGit"
-  - cmd: SET PATH=C:\Program Files\PatchFromGit;%PATH%
-
-  - ps: |
-      Add-Type -AssemblyName System.IO.Compression.FileSystem
-      if (!(Test-Path -Path "C:\maven" )) {
-        (new-object System.Net.WebClient).DownloadFile('https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip', 'C:\maven-bin.zip')
-        [System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
-      }
-  - cmd: SET PATH=C:\maven\apache-maven-3.5.4\bin;%JAVA_HOME%\bin;%PATH%
-  - cmd: SET JAVA_HOME=C:\Program Files\Java\jdk1.8.0
-  - cmd: SET M2_HOME=C:\maven\apache-maven-3.5.4
-  - cmd: SET MAVEN_OPTS=-Xmx4g
-  - cmd: SET JAVA_OPTS=-Xmx4g
-
-  - echo %PATH%
-build_script:
-  - mvn --show-version --quiet -T 1C -PskipTests,all,without-eclipse --batch-mode
-test_script:
-  - cd fit\core-reference
-  - mvn clean verify
-cache:
-  - C:\maven\
-  - C:\Users\appveyor\.m2