Skip to content

2.3.0.RELEASE

Compare
Choose a tag to compare
@jonashackt jonashackt released this 04 Sep 12:53
· 166 commits to master since this release

Grab the new version from Maven central https://repo1.maven.org/maven2/de/codecentric/cxf-spring-boot-starter/2.3.0.RELEASE/ by using it in your deps (also use the newest cxf-spring-boot-starter-maven-plugin https://github.com/codecentric/cxf-spring-boot-starter-maven-plugin/releases/tag/2.3.0.RELEASE):

<dependencies>
	<dependency>
	    <groupId>de.codecentric</groupId>
	    <artifactId>cxf-spring-boot-starter</artifactId>
	    <version>2.3.0.RELEASE</version>
	</dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>de.codecentric</groupId>
            <artifactId>cxf-spring-boot-starter-maven-plugin</artifactId>
            <version>2.3.0.RELEASE</version>
            <executions>
                <execution>
                    <goals>
                        <goal>generate</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

This release covers the latest versions of Spring Boot, Apache CXF, cxf-spring-boot-starter-maven-plugin (incl. 2.3.3 versions of JAX-B & JAX-WS), logstash-logback-encoder & Spring Cloud Sleuth:

                <spring.boot.version>2.3.3.RELEASE</spring.boot.version>
		<cxf-spring-boot-starter-maven-plugin.version>2.3.0.RELEASE</cxf-spring-boot-starter-maven-plugin.version>
		<cxf.version>3.4.0</cxf.version>
		<jakarta.activation.version>1.2.2</jakarta.activation.version>
		<fluent-hc.version>4.5.12</fluent-hc.version>
		<camunda.version>7.13.0</camunda.version>
		<logstash-logback-encoder.version>6.4</logstash-logback-encoder.version>
		<commons-io.version>2.7</commons-io.version>
		<spring.cloud.sleuth.version>2.2.5.RELEASE</spring.cloud.sleuth.version>