Skip to content

Commit

Permalink
Upgraded kotlin and dokka
Browse files Browse the repository at this point in the history
  • Loading branch information
johanhaleby committed Dec 8, 2023
1 parent 02b53e7 commit 02f72a0
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 32 deletions.
3 changes: 2 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog next version
----------------------
* Properly parse primitive JSON values (thanks to Jörg Eichhorn for pull request)
* Upgraded to Groovy 4.0.14
* Upgraded Groovy from 4.0.10 to 4.0.14
* Fix issue #1713 - endless loop in partiallyApplyPathParams (thanks to Oleksandr Kulychok for pull request)
* Introduce spring-web-test-client-kotlin-extensions (#1731) (thanks for TheDevLuffy for pull request). This means that if you depend on: `org.restassured:spring-web-test-client-kotlin-extensions:<version>` you can write code like this for Spring WebTest client:
val id: Int =
Expand All @@ -20,6 +20,7 @@ Changelog next version
}
* Fix 1746: JsonPath: wrong result and exception when jsonPath partly evaluates to string/boolean/number (#1747) (thanks to Oleksandr Kulychok for pull request)
* Add support for negative indexes in JsonPath (thanks to Oleksandr Kulychok for pull request). This means that you can now do e.g. String object = JsonPath.from("<some json>").getString("[-1].email");
* Upgraded Kotlin from 1.9.10 to 1.9.21

Changelog 5.3.2 (2023-09-08)
----------------------------
Expand Down
10 changes: 0 additions & 10 deletions modules/kotlin-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dokka.version>1.4.10.2</dokka.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -129,13 +128,4 @@
</plugin>
</plugins>
</build>

<pluginRepositories>
<!-- The Dokka plugin is in JCenter-->
<pluginRepository>
<id>jcenter</id>
<name>JCenter</name>
<url>https://jcenter.bintray.com/</url>
</pluginRepository>
</pluginRepositories>
</project>
10 changes: 0 additions & 10 deletions modules/spring-mock-mvc-kotlin-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dokka.version>1.4.10.2</dokka.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -137,13 +136,4 @@
</plugins>
</build>

<pluginRepositories>
<!-- The Dokka plugin is in JCenter-->
<pluginRepository>
<id>jcenter</id>
<name>JCenter</name>
<url>https://jcenter.bintray.com/</url>
</pluginRepository>
</pluginRepositories>

</project>
10 changes: 0 additions & 10 deletions modules/spring-web-test-client-kotlin-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dokka.version>1.4.10.2</dokka.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -142,13 +141,4 @@
</plugins>
</build>

<pluginRepositories>
<!-- The Dokka plugin is in JCenter-->
<pluginRepository>
<id>jcenter</id>
<name>JCenter</name>
<url>https://jcenter.bintray.com/</url>
</pluginRepository>
</pluginRepositories>

</project>
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,12 @@
<jakarta.json.version>1.1.6</jakarta.json.version>
<maven-javadoc.version>2.9.1</maven-javadoc.version>
<surefire.version>2.22.0</surefire.version>
<kotlin.version>1.9.10</kotlin.version>
<kotlin.version>1.9.21</kotlin.version>
<assertj-core.version>3.16.1</assertj-core.version>
<scribe.version>2.5.3</scribe.version>
<sundrio.version>0.93.0</sundrio.version>
<guava.version>32.0.1-jre</guava.version>
<dokka.version>1.9.10</dokka.version>
</properties>
<scm>
<url>http://github.com/rest-assured/rest-assured/tree/${scm.branch}</url>
Expand Down

0 comments on commit 02f72a0

Please sign in to comment.