Skip to content

Commit

Permalink
Add E2E Swagger URL
Browse files Browse the repository at this point in the history
  • Loading branch information
hirenkp2000 committed Jun 28, 2024
1 parent f9697fa commit bad0445
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ mavenUser=YourUserName
mavenPassword=YourPassword

# When updating the version, please as well consider:
# - here-naksha-lib-core/INaksha (static property: latest)
# - here-naksha-lib-core/NakshaVersion (static property: latest)
# - here-naksha-lib-psql/resources/naksha_plpgsql.sql (method: naksha_version)
# - here-naksha-app-service/src/main/resources/swagger/openapi.yaml (info.version property)
version=2.0.18
version=2.0.19
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ servers:
description: "Local"
- url: "https://naksha-v2-dev.ext.mapcreator.here.com/"
description: "DEV"
- url: "https://naksha-v2-e2e.ext.mapcreator.here.com/"
description: "E2E"
- url: "https://naksha-v2.ext.mapcreator.here.com/"
description: "PRD"
info:
title: "Naskha Hub-API"
description: "Naksha Hub-API is a REST API to provide simple access to geo data."
version: "2.0.18"
version: "2.0.19"

security:
- AccessToken: [ ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,13 @@ public class NakshaVersion implements Comparable<NakshaVersion> {
public static final String v2_0_16 = "2.0.16";
public static final String v2_0_17 = "2.0.17";
public static final String v2_0_18 = "2.0.18";
public static final String v2_0_19 = "2.0.19";

/**
* The latest version of the naksha-extension stored in the resources.
*/
@AvailableSince(v2_0_5)
public static final NakshaVersion latest = of(v2_0_18);
public static final NakshaVersion latest = of(v2_0_19);

private final int major;
private final int minor;
Expand Down

0 comments on commit bad0445

Please sign in to comment.