Skip to content

Commit

Permalink
[GEOT-6050] Upgrade HSQLDB to 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bencaradocdavies committed Jun 27, 2018
1 parent 4bb01ac commit 8385773
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -74,7 +74,7 @@ public class ThreadedHsqlEpsgFactory extends ThreadedEpsgFactory {
* version number if there is some changes related to the EPSG-HSQL plugin rather then the EPSG
* database itself (for example additional database index).
*/
public static final Version VERSION = new Version("8.6.0.0");
public static final Version VERSION = new Version("8.6.0.1");

/**
* The key for fetching the database directory from {@linkplain System#getProperty(String)
Expand Down Expand Up @@ -157,7 +157,7 @@ private static File getDirectory() {

/** Returns the directory to uses in the temporary directory folder. */
private static File getTemporaryDirectory() {
File directory = new File(System.getProperty("java.io.tmpdir", "."), "Geotools");
File directory = new File(System.getProperty("java.io.tmpdir", "."), "GeoTools");
if (directory.isDirectory() || directory.mkdir()) {
directory = new File(directory, "Databases/HSQL");
if (directory.isDirectory() || directory.mkdirs()) {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -997,7 +997,7 @@
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.3.0</version>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>org.openplans</groupId>
Expand Down

0 comments on commit 8385773

Please sign in to comment.