Skip to content

Commit

Permalink
Set version 1.3.1 for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Duda committed Oct 28, 2018
1 parent 8a09481 commit ba79622
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <fileName> <indexName> --mapping mappingName --clear
java -Xmx2g -jar excelastic.jar <fileName> <indexName> --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.

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>com.codingchili</groupId>
<artifactId>excelastic</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
<build>
<plugins>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/codingchili/ApplicationLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit ba79622

Please sign in to comment.