You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2020/07/01 10:21:37 UTC

[myfaces-tobago] branch master updated (f0fb5fd -> e477054)

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

lofwyr pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git.


    from f0fb5fd  checkstyle
     new 2f88ce9  TOBAGO-2045: Go for JavaEE 8 servers and Quarkus * compatibility with "next"
     new e477054  Update to Quarkus 1.5.2.Final

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:
 .../java/org/apache/myfaces/tobago/event/TobagoActionSource.java  | 8 ++++----
 tobago-example/pom.xml                                            | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)


[myfaces-tobago] 02/02: Update to Quarkus 1.5.2.Final

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

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit e4770549b1d7094ffd300c8ee8fa1badb278e141
Author: Udo Schnurpfeil <ud...@irian.eu>
AuthorDate: Wed Jul 1 12:21:14 2020 +0200

    Update to Quarkus 1.5.2.Final
---
 tobago-example/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tobago-example/pom.xml b/tobago-example/pom.xml
index 611d3aa..4430b90 100644
--- a/tobago-example/pom.xml
+++ b/tobago-example/pom.xml
@@ -28,7 +28,7 @@
 
   <properties>
     <app.packaging>war</app.packaging>
-    <quarkus.version>1.5.1.Final</quarkus.version>
+    <quarkus.version>1.5.2.Final</quarkus.version>
   </properties>
 
   <modules>


[myfaces-tobago] 01/02: TOBAGO-2045: Go for JavaEE 8 servers and Quarkus * compatibility with "next"

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

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 2f88ce950ce30cbc9fee9466a94da822aea97834
Author: Udo Schnurpfeil <ud...@irian.eu>
AuthorDate: Wed Jul 1 11:02:40 2020 +0200

    TOBAGO-2045: Go for JavaEE 8 servers and Quarkus
    * compatibility with "next"
---
 .../java/org/apache/myfaces/tobago/event/TobagoActionSource.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/event/TobagoActionSource.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/event/TobagoActionSource.java
index a4c9ae8..dbceea2 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/event/TobagoActionSource.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/event/TobagoActionSource.java
@@ -33,7 +33,7 @@ public interface TobagoActionSource extends ActionSource2 {
   /**
    * @deprecated Replaced by ActionSource2.getActionExpression
    */
-  @Override
+//  @Override no longer overriding, because it was dropped in MyFaces 2.3-next
   @Deprecated
   default MethodBinding getAction() {
     LOG.debug("JSF 1.1 style is no longer supported!");
@@ -43,7 +43,7 @@ public interface TobagoActionSource extends ActionSource2 {
   /**
    * @deprecated Replaced by ActionSource2.setActionExpression
    */
-  @Override
+//  @Override no longer overriding, because it was dropped in MyFaces 2.3-next
   @Deprecated
   default void setAction(MethodBinding action) {
     LOG.debug("JSF 1.1 style is no longer supported!");
@@ -52,7 +52,7 @@ public interface TobagoActionSource extends ActionSource2 {
   /**
    * @deprecated Replaced by getActionListeners
    */
-  @Override
+//  @Override no longer overriding, because it was dropped in MyFaces 2.3-next
   @Deprecated
   default MethodBinding getActionListener() {
     LOG.debug("JSF 1.1 style is no longer supported!");
@@ -62,7 +62,7 @@ public interface TobagoActionSource extends ActionSource2 {
   /**
    * @deprecated Replaced by getActionListeners
    */
-  @Override
+//  @Override no longer overriding, because it was dropped in MyFaces 2.3-next
   @Deprecated
   default void setActionListener(MethodBinding actionListener) {
     LOG.debug("JSF 1.1 style is no longer supported!");