Skip to content

Commit 207367e

Browse files
dependabot[bot]wadoon
authored andcommittedAug 12, 2024·
Bump the all group with 6 updates
Bumps the all group with 6 updates: | Package | From | To | | --- | --- | --- | | [org.jetbrains.kotlin:kotlin-stdlib-jdk8](https://github.com/JetBrains/kotlin) | `2.0.0` | `2.0.10` | | [org.jetbrains.kotlin:kotlin-reflect](https://github.com/JetBrains/kotlin) | `2.0.0` | `2.0.10` | | org.slf4j:slf4j-api | `2.0.13` | `2.0.16` | | org.slf4j:slf4j-simple | `2.0.13` | `2.0.16` | | [org.jetbrains.kotlin:kotlin-test-junit](https://github.com/JetBrains/kotlin) | `2.0.0` | `2.0.10` | | [org.jetbrains.kotlin.jvm](https://github.com/JetBrains/kotlin) | `2.0.0` | `2.0.10` | Updates `org.jetbrains.kotlin:kotlin-stdlib-jdk8` from 2.0.0 to 2.0.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.0.0...v2.0.10) Updates `org.jetbrains.kotlin:kotlin-reflect` from 2.0.0 to 2.0.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.0.0...v2.0.10) Updates `org.jetbrains.kotlin:kotlin-reflect` from 2.0.0 to 2.0.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.0.0...v2.0.10) Updates `org.slf4j:slf4j-api` from 2.0.13 to 2.0.16 Updates `org.slf4j:slf4j-simple` from 2.0.13 to 2.0.16 Updates `org.jetbrains.kotlin:kotlin-test-junit` from 2.0.0 to 2.0.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.0.0...v2.0.10) Updates `org.jetbrains.kotlin.jvm` from 2.0.0 to 2.0.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.0.0...v2.0.10) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-stdlib-jdk8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: org.jetbrains.kotlin:kotlin-reflect dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: org.jetbrains.kotlin:kotlin-reflect dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: org.slf4j:slf4j-simple dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: org.jetbrains.kotlin:kotlin-test-junit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: org.jetbrains.kotlin.jvm dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 828037c commit 207367e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import java.text.SimpleDateFormat
22

33
plugins {
4-
id "org.jetbrains.kotlin.jvm" version "2.0.0" apply false
4+
id "org.jetbrains.kotlin.jvm" version "2.0.10" apply false
55
id("org.jetbrains.dokka") version "1.9.20"
66
id "org.sonarqube" version "5.1.0.4882"
77
id "com.github.ben-manes.versions" version "0.51.0"
@@ -49,7 +49,7 @@ subprojects {
4949
apply plugin: 'maven-publish'
5050
apply plugin: 'jacoco'
5151

52-
ext.kotlin_version = '2.0.0'
52+
ext.kotlin_version = '2.0.10'
5353

5454
sourceCompatibility = 21
5555
targetCompatibility = 21
@@ -112,15 +112,15 @@ subprojects {
112112
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
113113
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
114114
implementation group: "org.jetbrains", name: 'annotations', version: '24.1.0'
115-
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.13'
116-
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.13'
115+
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.16'
116+
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.16'
117117
testImplementation 'com.google.truth:truth:1.4.4'
118118

119119
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.3'
120120
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.3'
121121
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
122122

123-
testImplementation group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit', version: '2.0.0'
123+
testImplementation group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit', version: '2.0.10'
124124
testImplementation project(':utils-test')
125125
}
126126

0 commit comments

Comments
 (0)
Please sign in to comment.