From f32d9756b14f6858035274b5cec82a1996d379e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20M=C3=B8lg=C3=A5rd=20Vester?= Date: Fri, 23 Jul 2021 13:03:47 +0200 Subject: [PATCH] Update the README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 09de00b..47c3b6c 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Here is a list of all available properties: | includesWithOptions | Map\ | \[not set\] | Inclusion filters like above, but with individual options. See below. | | generatedSourceDir | DirectoryProperty | "$buildDir/generated
/sources/wsdl2java/java" | The output directory for the generated Java sources.
Note that it will be deleted when running XJC. | | bindingFile | RegularFileProperty | \[not set\] | A binding file to use in the schema compiler. | -| cxfVersion | Provider\ | "3.4.3" | The version of CXF to use. | +| cxfVersion | Provider\ | "3.4.4" | The version of CXF to use. | | verbose | Provider\ | \[not set\] | Enables verbose output from CXF. If not set, it will be be enabled only on the info logging level. | | suppressGeneratedDate | Provider\ | true | Suppresses generating dates in CXF. Default is true to support reproducible builds and to work with the build cache. | | markGenerated | Provider\ | "no" | Adds the @Generated annotation to the generated sources. See below for details as there are some gotchas with this. | @@ -57,7 +57,7 @@ You can specify the version of CXF used for code generation like this: ```kotlin wsdl2java { - cxfVersion.set("3.4.3") + cxfVersion.set("3.4.4") } ```