diff --git a/README.md b/README.md index 1dcbfc1..54f257f 100644 --- a/README.md +++ b/README.md @@ -27,13 +27,13 @@ Tested with ElasticSearch 5.6.2 and 6.4.2. Running the application, filename and index is required, to import from the terminal run: ``` -java -Xmx2g -jar excelastic-1.3.0.jar --mapping mappingName --clear +java -Xmx2g -jar excelastic.jar --mapping mappingName --clear ``` If running with --clear, then the existing index will be cleared before the import starts. To run with the web interface, run the following in your terminal: ``` -java -Xmx2g -jar excelastic-1.3.0.jar +java -Xmx2g -jar excelastic.jar ``` When the application successfully connects to the ElasticSearch server, the browser will automatically open a new tab. diff --git a/pom.xml b/pom.xml index a861998..12ad66a 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ com.codingchili excelastic - 1.3.0 + 1.3.1 diff --git a/src/main/java/com/codingchili/ApplicationLauncher.java b/src/main/java/com/codingchili/ApplicationLauncher.java index 11d275f..b326ca6 100644 --- a/src/main/java/com/codingchili/ApplicationLauncher.java +++ b/src/main/java/com/codingchili/ApplicationLauncher.java @@ -21,7 +21,7 @@ */ public class ApplicationLauncher { private final ApplicationLogger logger = new ApplicationLogger(getClass()); - public static String VERSION = "1.3.0"; + public static String VERSION = "1.3.1"; private Vertx vertx; public static void main(String[] args) {