You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by de...@apache.org on 2018/08/28 11:25:20 UTC

[cxf] branch 3.2.x-fixes updated (5df2128 -> d104261)

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

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


    from 5df2128  [CXF-7823]:JAXBEncoderDecoder doesn't respect @XmlType's propOrder in… (#437) (#438)
     new 46a9cab  [CXF-7829] Use Spring Boot autoconfigure-processor to optimize auto-configurations
     new d104261  Recording .gitmergeinfo Changes

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:
 .gitmergeinfo                                 | 5 +++++
 integration/spring-boot/autoconfigure/pom.xml | 5 +++++
 parent/pom.xml                                | 5 +++++
 3 files changed, 15 insertions(+)


[cxf] 02/02: Recording .gitmergeinfo Changes

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

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

commit d104261a0806818888aada81d2f98f5febdec8fa
Author: Dennis Kieselhorst <de...@apache.org>
AuthorDate: Tue Aug 28 13:19:36 2018 +0200

    Recording .gitmergeinfo Changes
---
 .gitmergeinfo | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.gitmergeinfo b/.gitmergeinfo
index 1ed6f47..0b739bc 100644
--- a/.gitmergeinfo
+++ b/.gitmergeinfo
@@ -1,8 +1,12 @@
 origin/master
+B 057f4dc521f02227d7b36bbb508835a9edb69e15
 B 25e88017b49bde5a53bce8dab3ecc93aab6dd040
 B 4104641a4b731c72d66b1dace3d9ed4290226694
 B 468cf8f3cfe9ef8285cd2ae66caddf666b7aaf13
+B 4b7ede2d6cda7651b686653e0645c40b6684b81f
 B 9db243c1aa44732996514200b490eb63683540b4
+B a3295e61bcf8c00c13a79707841a58131fd9c97d
+B b8236c923ba409087e8db6132963924151918efc
 B bb098089d18825ddc850fa82f4acee45e2b6ee7a
 B da5b01b32a59867b48e2b35a9281b3625f58d514
 B e000e8c0b8ed82533cbeb4e3a39dd9fbf128383c
@@ -11,6 +15,7 @@ B fc656dc1311963f5fc833856984b36b7ccd26042
 M 0b920d7275800e651b2c48c982b1977249516ddf
 M 1449f125586deaf6f5d87e282f0e1502eef4b6b4
 M 3904a477e70fe6385777120bfe4820ff9a7713f3
+M 3aaaad57c6bf541825c6ccfe427de2bae2c246d9
 M 4f8ae843f56e3ef84af43ae90f507e196726f0bf
 M 504a1b7827bc76f3c5106b901b44e54513db17aa
 M 886a055d49d844e445721e4752c7a6360cbe8b9a


[cxf] 01/02: [CXF-7829] Use Spring Boot autoconfigure-processor to optimize auto-configurations

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

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

commit 46a9cabf8742f00bc3221e63257dfe51050270c4
Author: Dennis Kieselhorst <de...@apache.org>
AuthorDate: Tue Aug 28 12:44:41 2018 +0200

    [CXF-7829] Use Spring Boot autoconfigure-processor to optimize auto-configurations
    
    (cherry picked from commit 514f341958701f973e7a08f4a1791ef698d85242)
---
 integration/spring-boot/autoconfigure/pom.xml | 5 +++++
 parent/pom.xml                                | 5 +++++
 2 files changed, 10 insertions(+)

diff --git a/integration/spring-boot/autoconfigure/pom.xml b/integration/spring-boot/autoconfigure/pom.xml
index fc5e5e5..4552a0b 100644
--- a/integration/spring-boot/autoconfigure/pom.xml
+++ b/integration/spring-boot/autoconfigure/pom.xml
@@ -69,6 +69,11 @@
             <artifactId>spring-boot-configuration-processor</artifactId>
             <optional>true</optional>
         </dependency>
+        <dependency><!-- CXF-7829 -->
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-autoconfigure-processor</artifactId>
+            <optional>true</optional>
+        </dependency>
         <dependency>
             <groupId>org.apache.cxf</groupId>
             <artifactId>cxf-rt-transports-http</artifactId>
diff --git a/parent/pom.xml b/parent/pom.xml
index a0768b9..48bf541 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -1972,6 +1972,11 @@
             </dependency>
             <dependency>
                 <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-autoconfigure-processor</artifactId>
+                <version>${cxf.spring.boot.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-configuration-processor</artifactId>
                 <version>${cxf.spring.boot.version}</version>
             </dependency>