Skip to content

Commit 09d2271

Browse files
committed
Update dependencies
1 parent 0abc36a commit 09d2271

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
- Generator: Add markdown summary logs
44
- Generator: Add gstreamer support
5+
- Generator: Update Kotlin to 2.1.10
56
- Library: Add PropertyHolder to accesss GObject properties
7+
- Library: Update findbugs to spotbugs-annotations:4.9.3
8+
- Library: Update jna to 5.17.0
9+
- CI: Update gradle to version 8.13
10+
- CI: Update release plugin to version 1.18.18
11+
- CI: Update JUnit to 5.12.1
612

713
# 0.5.0
814

generator/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ plugins {
33
java
44

55
// https://kotlinlang.org/docs/gradle-configure-project.html
6-
kotlin("jvm") version "1.9.22"
6+
kotlin("jvm") version "2.1.10"
77
}
88

99
repositories {
1010
mavenCentral()
1111
}
1212

1313
dependencies {
14-
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
14+
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter
15+
testImplementation("org.junit.jupiter:junit-jupiter:5.12.1")
1516

1617
// https://mvnrepository.com/artifact/net.sf.kxml/kxml2
1718
// xml parser implementation

java-gtk/build.gradle.kts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,16 @@ repositories {
3838

3939
dependencies {
4040
// implementation of javax.annotation:javax.annotation-api
41-
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
42-
api("com.google.code.findbugs:jsr305:3.0.2")
41+
// https://mvnrepository.com/artifact/com.github.spotbugs/spotbugs-annotations
42+
api("com.github.spotbugs:spotbugs-annotations:4.9.3")
43+
4344

4445
// https://github.com/java-native-access/jna
4546
// https://mvnrepository.com/artifact/net.java.dev.jna/jna
46-
api("net.java.dev.jna:jna:5.13.0")
47+
api("net.java.dev.jna:jna:5.17.0")
4748

48-
//https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
49-
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
49+
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
50+
testImplementation("org.junit.jupiter:junit-jupiter:5.12.1")
5051
}
5152

5253

0 commit comments

Comments
 (0)