You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2018/04/23 10:53:57 UTC

[cxf] branch master updated (f98526a -> c870778)

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

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


    from f98526a  Fixing Spark demo build
     new 2b83d5f  Adding LoggingFeature to WS-Discover demo
     new c870778  Picking up XJC SNAPSHOT to get the builds (partially) working with Java 10

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/main/java/org/apache/cxf/samples/discovery/Main.java          | 4 +++-
 pom.xml                                                               | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
coheigea@apache.org.

[cxf] 01/02: Adding LoggingFeature to WS-Discover demo

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

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

commit 2b83d5f3872c08507e10fcad928f09c846e0991a
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Mon Apr 23 11:45:33 2018 +0100

    Adding LoggingFeature to WS-Discover demo
---
 .../src/main/java/org/apache/cxf/samples/discovery/Main.java          | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/distribution/src/main/release/samples/ws_discovery/src/main/java/org/apache/cxf/samples/discovery/Main.java b/distribution/src/main/release/samples/ws_discovery/src/main/java/org/apache/cxf/samples/discovery/Main.java
index e58c4ce..7cc756a 100644
--- a/distribution/src/main/release/samples/ws_discovery/src/main/java/org/apache/cxf/samples/discovery/Main.java
+++ b/distribution/src/main/release/samples/ws_discovery/src/main/java/org/apache/cxf/samples/discovery/Main.java
@@ -25,6 +25,8 @@ import java.net.ServerSocket;
 
 import javax.xml.ws.Endpoint;
 
+import org.apache.cxf.ext.logging.LoggingFeature;
+
 public final class Main {
 
     private Main() {
@@ -43,6 +45,6 @@ public final class Main {
 
         String address = "http://localhost:" + port + "/Greeter";
         System.out.println("Publishing on " + address);
-        Endpoint.publish(address, new GreeterImpl(port));
+        Endpoint.publish(address, new GreeterImpl(port), new LoggingFeature());
     }
 }

-- 
To stop receiving notification emails like this one, please contact
coheigea@apache.org.

[cxf] 02/02: Picking up XJC SNAPSHOT to get the builds (partially) working with Java 10

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

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

commit c870778a809bd12c31993f6056e5d62862b90724
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Mon Apr 23 11:53:31 2018 +0100

    Picking up XJC SNAPSHOT to get the builds (partially) working with Java 10
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 58e9acf..613addc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,7 +41,7 @@
     <properties>
         <cxf.compiler.fork>false</cxf.compiler.fork>
         <cxf.build-utils.version>3.4.0</cxf.build-utils.version>
-        <cxf.xjc-utils.version>3.2.1</cxf.xjc-utils.version>
+        <cxf.xjc-utils.version>3.2.2-SNAPSHOT</cxf.xjc-utils.version>
         <cxf.jdk.version>1.8</cxf.jdk.version>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <site.deploy.url>scp://people.apache.org/www/cxf.apache.org/maven-site</site.deploy.url>

-- 
To stop receiving notification emails like this one, please contact
coheigea@apache.org.