Skip to content

Commit

Permalink
build(deps): bump v.kotlin from 2.0.21 to 2.1.0 in /src (#328)
Browse files Browse the repository at this point in the history
* build(deps): bump v.kotlin from 2.0.21 to 2.1.0 in /src

Bumps `v.kotlin` from 2.0.21 to 2.1.0.

Updates `org.jetbrains.kotlin:kotlin-stdlib` from 2.0.21 to 2.1.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/v2.1.0/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.0.21...v2.1.0)

Updates `org.jetbrains.kotlin:kotlin-test` from 2.0.21 to 2.1.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/v2.1.0/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.0.21...v2.1.0)

Updates `org.jetbrains.kotlin:kotlin-maven-plugin` from 2.0.21 to 2.1.0

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin:kotlin-stdlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlin:kotlin-test
  dependency-type: direct:development
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlin:kotlin-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix: kotlin 2.1

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrew Berezovskyi <andriib@kth.se>
  • Loading branch information
dependabot[bot] and berezovskyi authored Dec 1, 2024
1 parent b179475 commit 19c154d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/client-toolchain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>

<v.kotlin>2.0.21</v.kotlin>
<v.kotlin>2.1.0</v.kotlin>
<v.lyo>7.0.0-SNAPSHOT</v.lyo>
<v.jersey>3.1.5</v.jersey>
<v.kotlin.coroutines>1.9.0</v.kotlin.coroutines>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fun genRequirementColl(sp: ServiceProvider, id: Int, max:Int): RequirementCollec
val r = RequirementCollection()
val faker = Faker()
r.apply {
shortTitle = "${sp.identifier.toUpperCase()}-C$id"
shortTitle = "${sp.identifier.uppercase(Locale.getDefault())}-C$id"
identifier = "rq_coll_$id"
title = "Requirement Collection no. $id"
description = faker.chuckNorris().fact()
Expand All @@ -46,7 +46,7 @@ fun genRequirementColl(sp: ServiceProvider, id: Int, max:Int): RequirementCollec
fun genRequirement(sp: ServiceProvider, id: Int, max:Int): Requirement {
val r = Requirement()
r.apply {
shortTitle = "${sp.identifier.toUpperCase()}-R$id"
shortTitle = "${sp.identifier.uppercase(Locale.getDefault())}-R$id"
identifier = "req_$id"
title = "Requirement no. $id"
description = "Requirement no. $id was generated by a 'client-toolchain' project. Edit src/client-toolchain/src/main/kotlin/co/oslc/refimpl/client/RandomResourceGen.kt to change how these resources look."
Expand Down

0 comments on commit 19c154d

Please sign in to comment.