Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.mapcode.rest</groupId>
<artifactId>mapcode-rest-service</artifactId>
<version>2.4.18.1</version>
<version>2.4.18.2</version>
</parent>

<artifactId>deployment</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public final class StartupCheck {
LOG.info("check: Checking system start-up configuration.");
final String javaVersion = System.getProperty("java.version");
check(javaVersion.startsWith("1.6.") || javaVersion.startsWith("1.7.") || javaVersion.startsWith("1.8.") ||
javaVersion.startsWith("11.") || javaVersion.startsWith("14."),
"The system requires JRE 1.6.x/1.7.x/1.8.x/11.x/14.x (found JRE " + javaVersion + ").");
javaVersion.startsWith("11.") || javaVersion.startsWith("14.") || javaVersion.startsWith("17."),
"The system requires JRE 1.6.x/1.7.x/1.8.x/11.x/14.x/17.x (found JRE " + javaVersion + ").");

// Check encoding. The default character encoding for JSON is UTF8. UTF16 and UTF32 are also supported.
// This is to make sure that byte conversions that rely on default encoding do not cause unexpected behaviour.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<artifactId>mapcode-rest-service</artifactId>

<packaging>pom</packaging>
<version>2.4.18.1</version>
<version>2.4.18.2</version>

<name>Mapcode REST API Web Service</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.mapcode.rest</groupId>
<artifactId>mapcode-rest-service</artifactId>
<version>2.4.18.1</version>
<version>2.4.18.2</version>
</parent>

<artifactId>resources</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.mapcode.rest</groupId>
<artifactId>mapcode-rest-service</artifactId>
<version>2.4.18.1</version>
<version>2.4.18.2</version>
</parent>

<artifactId>service</artifactId>
Expand Down