Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhael Sokolov committed Jan 27, 2024
1 parent 4b26a9e commit 62afc32
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<revision>0.2.1-SNAPSHOT</revision>

<java.version>1.8</java.version>
<kotlin.version>1.6.20</kotlin.version>
<jackson.version>2.13.2.20220328</jackson.version>
<kotlin.version>1.9.20</kotlin.version>
<jackson.version>2.16.1</jackson.version>
<jeasy-random.version>4.3.0</jeasy-random.version>

<maven.compiler.source>${java.version}</maven.compiler.source>
Expand Down Expand Up @@ -133,7 +133,7 @@
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>3.5.2</version>
<version>3.5.7</version>
<executions>
<execution>
<id>generate-sources</id>
Expand All @@ -159,7 +159,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.7</version>
<version>1.6.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
Expand Down Expand Up @@ -188,7 +188,7 @@
<!-- mvn license:format -->
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>4.1</version>
<version>4.3</version>
<configuration>
<header>header.txt</header>
<includes>
Expand Down Expand Up @@ -243,7 +243,7 @@
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>1.6.10</version>
<version>1.9.10</version>
<executions>
<execution>
<phase>pre-site</phase>
Expand All @@ -257,7 +257,7 @@
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>kotlin-as-java-plugin</artifactId>
<version>1.5.30</version>
<version>1.9.10</version>
</plugin>
</dokkaPlugins>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ internal class SoapEnvelopeDeserializers : Deserializers.Base() {
sr.nextTag() == START_ELEMENT && sr.localName == "Fault" -> {
sr.soapFault()
}
bodyClass != null && bodyClass != Nothing::class.java -> {
sr.nextTag()
bodyClass != null && bodyClass != Nothing::class.java && bodyClass != Void::class.java -> {
body = parser.readValueAs(bodyClass)
}
}
Expand Down

0 comments on commit 62afc32

Please sign in to comment.