Skip to content

Commit b8fc25a

Browse files
authored
remove snakeyaml (#564)
Signed-off-by: phmai <phuc.mai@here.com>
1 parent 61d93b1 commit b8fc25a

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Naksha_2.2.20
2+
- Remove unused module snakeyaml.
3+
14
## Naksha_2.2.19
25
- Changed from Java 17 to Java 11 for naksha-lib-mm-util project.
36

build.gradle.kts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ val jackson_core_annotations = "com.fasterxml.jackson.core:jackson-annotations:2
5353
val jackson_core_databind = "com.fasterxml.jackson.core:jackson-databind:2.15.4"
5454
val jackson_core_dataformat = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.4"
5555

56-
var snakeyaml = "org.yaml:snakeyaml";
57-
5856
val google_flatbuffers = "com.google.flatbuffers:flatbuffers-java:24.3.25"
5957
val google_protobuf = "com.google.protobuf:protobuf-java:4.27.2"
6058
val google_guava = "com.google.guava:guava:33.2.1-jre"
@@ -250,12 +248,6 @@ subprojects {
250248
// Fix transitive dependencies.
251249

252250
dependencies {
253-
implementation(snakeyaml) {
254-
// https://stackoverflow.com/questions/70154082/getting-java-lang-nosuchmethoderror-org-yaml-snakeyaml-yaml-init-while-runnin
255-
version {
256-
strictly("1.33")
257-
}
258-
}
259251
implementation(platform(aws_bom))
260252
}
261253

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ mavenPassword=YourPassword
1111
# - here-naksha-lib-core/src/main/com/here/naksha/lib/core/NakshaVersion (static property: latest)
1212
# - here-naksha-app-service/src/main/resources/swagger/openapi.yaml (info.version property)
1313
# - CHANGELOG.md
14-
version=2.2.19
14+
version=2.2.20
1515

here-naksha-app-service/src/main/resources/swagger/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ servers:
1212
info:
1313
title: "Naksha Hub-API"
1414
description: "Naksha Hub-API is a REST API to provide simple access to geo data."
15-
version: "2.2.19"
15+
version: "2.2.20"
1616

1717
security:
1818
- AccessToken: [ ]

here-naksha-lib-core/src/main/java/com/here/naksha/lib/core/NakshaVersion.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,13 @@ public class NakshaVersion implements Comparable<NakshaVersion> {
7777
public static final String v2_2_17 = "2.2.17";
7878
public static final String v2_2_18 = "2.2.18";
7979
public static final String v2_2_19 = "2.2.19";
80+
public static final String v2_2_20 = "2.2.20";
8081

8182
/**
8283
* The latest version of the naksha-extension stored in the resources.
8384
*/
8485
@AvailableSince(v2_0_5)
85-
public static final NakshaVersion latest = of(v2_2_19);
86+
public static final NakshaVersion latest = of(v2_2_20);
8687

8788
private final int major;
8889
private final int minor;

0 commit comments

Comments
 (0)