File tree 3 files changed +15
-7
lines changed
3 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
- Generator: Add markdown summary logs
4
4
- Generator: Add gstreamer support
5
+ - Generator: Update Kotlin to 2.1.10
5
6
- 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
6
12
7
13
# 0.5.0
8
14
Original file line number Diff line number Diff line change @@ -3,15 +3,16 @@ plugins {
3
3
java
4
4
5
5
// https://kotlinlang.org/docs/gradle-configure-project.html
6
- kotlin(" jvm" ) version " 1.9.22 "
6
+ kotlin(" jvm" ) version " 2.1.10 "
7
7
}
8
8
9
9
repositories {
10
10
mavenCentral()
11
11
}
12
12
13
13
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" )
15
16
16
17
// https://mvnrepository.com/artifact/net.sf.kxml/kxml2
17
18
// xml parser implementation
Original file line number Diff line number Diff line change @@ -38,15 +38,16 @@ repositories {
38
38
39
39
dependencies {
40
40
// 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
+
43
44
44
45
// https://github.com/java-native-access/jna
45
46
// 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" )
47
48
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 " )
50
51
}
51
52
52
53
You can’t perform that action at this time.
0 commit comments