Skip to content

Commit 0a259c2

Browse files
committed
New dev version, also using newest released version in examples and docs. Also fixed javadoc issues and removed deprecated Sonatype oss-parent.
1 parent b3e6236 commit 0a259c2

File tree

7 files changed

+15
-19
lines changed

7 files changed

+15
-19
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The following documentation tries to get you started fast. There are also sample
4747
<dependency>
4848
<groupId>de.codecentric</groupId>
4949
<artifactId>cxf-spring-boot-starter</artifactId>
50-
<version>2.2.1.RELEASE</version>
50+
<version>2.3.0.RELEASE</version>
5151
</dependency>
5252
</dependencies>
5353
```
@@ -59,7 +59,7 @@ The following documentation tries to get you started fast. There are also sample
5959
<plugin>
6060
<groupId>de.codecentric</groupId>
6161
<artifactId>cxf-spring-boot-starter-maven-plugin</artifactId>
62-
<version>2.1.7.RELEASE</version>
62+
<version>2.3.0.RELEASE</version>
6363
<executions>
6464
<execution>
6565
<goals>

cxf-spring-boot-starter-samples/cxf-boot-simple-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>de.codecentric</groupId>
2929
<artifactId>cxf-spring-boot-starter</artifactId>
30-
<version>2.2.1.RELEASE</version>
30+
<version>2.3.0.RELEASE</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>org.springframework.boot</groupId>
@@ -65,7 +65,7 @@
6565
<plugin>
6666
<groupId>de.codecentric</groupId>
6767
<artifactId>cxf-spring-boot-starter-maven-plugin</artifactId>
68-
<version>2.1.7.RELEASE</version>
68+
<version>2.3.0.RELEASE</version>
6969
<executions>
7070
<execution>
7171
<goals>

cxf-spring-boot-starter-samples/cxf-boot-simple/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>de.codecentric</groupId>
2828
<artifactId>cxf-spring-boot-starter</artifactId>
29-
<version>2.2.1.RELEASE</version>
29+
<version>2.3.0.RELEASE</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.springframework.boot</groupId>
@@ -48,7 +48,7 @@
4848
<plugin>
4949
<groupId>de.codecentric</groupId>
5050
<artifactId>cxf-spring-boot-starter-maven-plugin</artifactId>
51-
<version>2.1.7.RELEASE</version>
51+
<version>2.3.0.RELEASE</version>
5252
<executions>
5353
<execution>
5454
<goals>

cxf-spring-boot-starter-samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.codecentric</groupId>
66
<artifactId>cxf-spring-boot-starter-reactor</artifactId>
7-
<version>2.2.2-SNAPSHOT</version>
7+
<version>2.3.1-SNAPSHOT</version>
88
</parent>
99
<artifactId>cxf-spring-boot-starter-samples</artifactId>
1010

cxf-spring-boot-starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.codecentric</groupId>
66
<artifactId>cxf-spring-boot-starter-reactor</artifactId>
7-
<version>2.2.2-SNAPSHOT</version>
7+
<version>2.3.1-SNAPSHOT</version>
88
</parent>
99
<artifactId>cxf-spring-boot-starter</artifactId>
1010
<description>Boot starter for SOAP-Webservices with Apache CXF using JAX-WS &amp; JAXB with Annotations only</description>
@@ -19,7 +19,7 @@
1919

2020
<!-- Project dependencies -->
2121
<spring.boot.version>2.3.3.RELEASE</spring.boot.version>
22-
<cxf-spring-boot-starter-maven-plugin.version>2.1.7.RELEASE</cxf-spring-boot-starter-maven-plugin.version>
22+
<cxf-spring-boot-starter-maven-plugin.version>2.3.0.RELEASE</cxf-spring-boot-starter-maven-plugin.version>
2323
<cxf.version>3.4.0</cxf.version>
2424
<jakarta.activation.version>1.2.2</jakarta.activation.version>
2525

cxf-spring-boot-starter/src/main/java/de/codecentric/cxf/configuration/CxfAutoConfiguration.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ public void setUp() throws BootStarterCxfException {
7373
* But when in client mode, this isn´t always wanted (e.g. when you are in Client
7474
* only mode and just want to test or call some SOAP services, but not provide
7575
* services on your own.
76-
* <p></p>
77-
* Because there is (& sadly will be) no @ConditionalOnMissingProperty in Spring Boot
76+
* <br><br>
77+
* Because there is (&amp; sadly will be) no @ConditionalOnMissingProperty in Spring Boot
7878
* (https://github.com/spring-projects/spring-boot/issues/4938), we need to use a workaround:
79-
* <p></p>
79+
* <br><br>
8080
* If endpoint.autoinit is NOT set, Endpoint autoinitialization will run.
8181
* If endpoint.autoinit is set to some other value than false, autoinitialization will also run.
82-
* <p></p>
82+
* <br><br>
8383
* Only if endpoint.autoinit = false, the autoinitialization isn´t running.
8484
*/
8585
@Bean

pom.xml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<parent>
5-
<groupId>org.sonatype.oss</groupId>
6-
<artifactId>oss-parent</artifactId>
7-
<version>7</version>
8-
</parent>
94
<groupId>de.codecentric</groupId>
105
<artifactId>cxf-spring-boot-starter-reactor</artifactId>
11-
<version>2.2.2-SNAPSHOT</version>
6+
<name>cxf-spring-boot-starter-reactor</name>
7+
<version>2.3.1-SNAPSHOT</version>
128

139
<description>Reactor Maven project for the cxf-spring-boot-starter</description>
1410
<packaging>pom</packaging>

0 commit comments

Comments
 (0)