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/04/18 09:06:19 UTC

[cxf] branch master updated (96cf54c -> e70db46)

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

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


    from 96cf54c  Upgrade swagger-jaxrs2
     new 208cf86  fixed JDK version and README
     new e70db46  added maven-compiler-plugin config to fix build on Jenkins

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:
 maven-plugins/codegen-plugin/src/it/README.md                     | 6 +++---
 .../codegen-plugin/src/it/jdk-cxf-with-toolchain/pom.xml          | 2 +-
 .../codegen-plugin/src/it/wsdl-artifact-resolution/pom.xml        | 8 ++++++++
 3 files changed, 12 insertions(+), 4 deletions(-)

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

[cxf] 02/02: added maven-compiler-plugin config to fix build on Jenkins

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

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

commit e70db46256f5d7c8ff047189dc4dc1b4d9882de8
Author: Dennis Kieselhorst <ma...@dekies.de>
AuthorDate: Wed Apr 18 11:06:04 2018 +0200

    added maven-compiler-plugin config to fix build on Jenkins
---
 .../codegen-plugin/src/it/wsdl-artifact-resolution/pom.xml        | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/maven-plugins/codegen-plugin/src/it/wsdl-artifact-resolution/pom.xml b/maven-plugins/codegen-plugin/src/it/wsdl-artifact-resolution/pom.xml
index 4c93c94..fd53823 100644
--- a/maven-plugins/codegen-plugin/src/it/wsdl-artifact-resolution/pom.xml
+++ b/maven-plugins/codegen-plugin/src/it/wsdl-artifact-resolution/pom.xml
@@ -35,6 +35,14 @@
                 </executions>
             </plugin>
             <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.7.0</version>
+                <configuration>
+                    <source>1.8</source>
+                    <target>1.8</target>
+                </configuration>
+            </plugin>
+            <plugin>
                 <groupId>org.apache.cxf</groupId>
                 <artifactId>cxf-codegen-plugin</artifactId>
                 <version>@project.version@</version>

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

[cxf] 01/02: fixed JDK version and README

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

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

commit 208cf86e1b9066559d97f10bc4b05e81859263c9
Author: Dennis Kieselhorst <ma...@dekies.de>
AuthorDate: Wed Apr 18 11:01:27 2018 +0200

    fixed JDK version and README
---
 maven-plugins/codegen-plugin/src/it/README.md                      | 6 +++---
 maven-plugins/codegen-plugin/src/it/jdk-cxf-with-toolchain/pom.xml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/maven-plugins/codegen-plugin/src/it/README.md b/maven-plugins/codegen-plugin/src/it/README.md
index f42b169..b3727dc 100644
--- a/maven-plugins/codegen-plugin/src/it/README.md
+++ b/maven-plugins/codegen-plugin/src/it/README.md
@@ -1,13 +1,13 @@
 toolchain-integration-tests
 ===========================
 
-jdk6-cxf-with-toolchain
+jdk-cxf-with-toolchain
 -----------------------
 
 This project contains sample maven module using `cxf-codegen-plugin` to generate java from WSDL file.
 
-- it enforces usage of JDK 1.7 or higher to run the `mvn` command
-- it configures `maven-toolchains-plugins` to target JDK 6
+- it enforces usage of JDK 1.9 or higher to run the `mvn` command
+- it configures `maven-toolchains-plugins` to target JDK 8
 - cxf `fork` parameter if set to true to enable toolchain detection
 - if the toolchain wasn't correctly used by the cxf-codegen-plugin`, the the build should fail during the _compile_ phase
 
diff --git a/maven-plugins/codegen-plugin/src/it/jdk-cxf-with-toolchain/pom.xml b/maven-plugins/codegen-plugin/src/it/jdk-cxf-with-toolchain/pom.xml
index ffc14b6..778eefc 100644
--- a/maven-plugins/codegen-plugin/src/it/jdk-cxf-with-toolchain/pom.xml
+++ b/maven-plugins/codegen-plugin/src/it/jdk-cxf-with-toolchain/pom.xml
@@ -93,7 +93,7 @@
             <configuration>
               <toolchains>
                 <jdk>
-                  <version>8</version>
+                  <version>1.8</version>
                 </jdk>
               </toolchains>
             </configuration>

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