File tree Expand file tree Collapse file tree 5 files changed +7
-11
lines changed
here-naksha-app-service/src/main/resources/swagger
here-naksha-lib-core/src/main/java/com/here/naksha/lib/core Expand file tree Collapse file tree 5 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -53,8 +53,6 @@ val jackson_core_annotations = "com.fasterxml.jackson.core:jackson-annotations:2
5353val jackson_core_databind = " com.fasterxml.jackson.core:jackson-databind:2.15.4"
5454val jackson_core_dataformat = " com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.4"
5555
56- var snakeyaml = " org.yaml:snakeyaml" ;
57-
5856val google_flatbuffers = " com.google.flatbuffers:flatbuffers-java:24.3.25"
5957val google_protobuf = " com.google.protobuf:protobuf-java:4.27.2"
6058val 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ servers:
1212info :
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
1717security :
1818 - AccessToken : [ ]
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments