You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2023/02/20 01:55:47 UTC

[cxf] branch 3.4.x-fixes updated (4de697c9e3 -> 7f3fa88b6f)

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

reta pushed a change to branch 3.4.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git


    from 4de697c9e3 Bump docker-maven-plugin from 0.4.9 to 1.2.2 (#1137)
     new a62d6f8cee Bump maven-plugin-annotations from 3.6.2 to 3.7.1 (#1143)
     new 7f3fa88b6f Bump jruby from 1.7.27 to 9.4.1.0 (#1144)

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/release/samples/ruby_spring_support/pom.xml   |  2 +-
 .../src/main/java/demo/spring/client/Client.java           | 14 ++++++--------
 .../src/main/resources/HelloWorldImpl.rb                   |  2 +-
 parent/pom.xml                                             |  2 +-
 4 files changed, 9 insertions(+), 11 deletions(-)


[cxf] 02/02: Bump jruby from 1.7.27 to 9.4.1.0 (#1144)

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

reta pushed a commit to branch 3.4.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit 7f3fa88b6f7a2f5c2dfd68e6497ba0561a036811
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Fri Feb 17 18:20:32 2023 -0500

    Bump jruby from 1.7.27 to 9.4.1.0 (#1144)
    
    * Bump jruby from 1.7.27 to 9.4.1.0
    
    Bumps jruby from 1.7.27 to 9.4.1.0.
    
    ---
    updated-dependencies:
    - dependency-name: org.jruby:jruby
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    
    * Update sample for jruby 9.4.1.0
    
    ---------
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    Co-authored-by: dependabot[bot] <49...@users.noreply.github.com>
    Co-authored-by: Andriy Redko <dr...@gmail.com>
---
 .../src/main/release/samples/ruby_spring_support/pom.xml   |  2 +-
 .../src/main/java/demo/spring/client/Client.java           | 14 ++++++--------
 .../src/main/resources/HelloWorldImpl.rb                   |  2 +-
 3 files changed, 8 insertions(+), 10 deletions(-)

diff --git a/distribution/src/main/release/samples/ruby_spring_support/pom.xml b/distribution/src/main/release/samples/ruby_spring_support/pom.xml
index 2f7325e6b2..94b191a1da 100644
--- a/distribution/src/main/release/samples/ruby_spring_support/pom.xml
+++ b/distribution/src/main/release/samples/ruby_spring_support/pom.xml
@@ -110,7 +110,7 @@
         <dependency>
             <groupId>org.jruby</groupId>
             <artifactId>jruby</artifactId>
-            <version>1.7.27</version>
+            <version>9.4.1.0</version>
         </dependency>
         <dependency>
             <groupId>cglib</groupId>
diff --git a/distribution/src/main/release/samples/ruby_spring_support/src/main/java/demo/spring/client/Client.java b/distribution/src/main/release/samples/ruby_spring_support/src/main/java/demo/spring/client/Client.java
index 0a3fb67689..616fdbe366 100644
--- a/distribution/src/main/release/samples/ruby_spring_support/src/main/java/demo/spring/client/Client.java
+++ b/distribution/src/main/release/samples/ruby_spring_support/src/main/java/demo/spring/client/Client.java
@@ -30,14 +30,12 @@ public final class Client {
 
     public static void main(String[] args) throws Exception {
         // START SNIPPET: client
-        ClassPathXmlApplicationContext context
-            = new ClassPathXmlApplicationContext(new String[] {"client-beans.xml"});
-
-        HelloWorld client = (HelloWorld)context.getBean("client");
-
-        String response = client.sayHi("Joe");
-        System.out.println("Response: " + response);
-        System.exit(0);
+        try (ClassPathXmlApplicationContext context
+            = new ClassPathXmlApplicationContext(new String[] {"client-beans.xml"})) {
+            HelloWorld client = (HelloWorld)context.getBean("client");
+            String response = client.sayHi("Joe");
+            System.out.println("Response: " + response);
+        }
         // END SNIPPET: client
     }
 }
diff --git a/distribution/src/main/release/samples/ruby_spring_support/src/main/resources/HelloWorldImpl.rb b/distribution/src/main/release/samples/ruby_spring_support/src/main/resources/HelloWorldImpl.rb
index 246d953205..821d196460 100644
--- a/distribution/src/main/release/samples/ruby_spring_support/src/main/resources/HelloWorldImpl.rb
+++ b/distribution/src/main/release/samples/ruby_spring_support/src/main/resources/HelloWorldImpl.rb
@@ -17,7 +17,7 @@
 
 require 'java'
 
-include_class 'demo.spring.service.HelloWorld'
+java_import 'demo.spring.service.HelloWorld'
 
 class HelloWorldImpl
   


[cxf] 01/02: Bump maven-plugin-annotations from 3.6.2 to 3.7.1 (#1143)

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

reta pushed a commit to branch 3.4.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit a62d6f8cee019ca220f39a1b05169940e99bdd93
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Fri Feb 17 07:46:03 2023 -0500

    Bump maven-plugin-annotations from 3.6.2 to 3.7.1 (#1143)
    
    Bumps [maven-plugin-annotations](https://github.com/apache/maven-plugin-tools) from 3.6.2 to 3.7.1.
    - [Release notes](https://github.com/apache/maven-plugin-tools/releases)
    - [Commits](https://github.com/apache/maven-plugin-tools/compare/maven-plugin-tools-3.6.2...maven-plugin-tools-3.7.1)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugin-tools:maven-plugin-annotations
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    Co-authored-by: dependabot[bot] <49...@users.noreply.github.com>
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index bd458cd8c6..db893c3ccd 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -871,7 +871,7 @@
             <dependency>
                 <groupId>org.apache.maven.plugin-tools</groupId>
                 <artifactId>maven-plugin-annotations</artifactId>
-                <version>3.6.0</version>
+                <version>3.7.1</version>
                 <scope>provided</scope>
                 <exclusions>
                     <exclusion>