File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/java/com/codingchili Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ Tested with ElasticSearch 5.6.2 and 6.4.2.
2727
2828Running the application, filename and index is required, to import from the terminal run:
2929```
30- java -Xmx2g -jar excelastic-1.3.0 .jar <fileName> <indexName> --mapping mappingName --clear
30+ java -Xmx2g -jar excelastic.jar <fileName> <indexName> --mapping mappingName --clear
3131```
3232If running with --clear, then the existing index will be cleared before the import starts.
3333
3434To run with the web interface, run the following in your terminal:
3535```
36- java -Xmx2g -jar excelastic-1.3.0 .jar
36+ java -Xmx2g -jar excelastic.jar
3737```
3838When the application successfully connects to the ElasticSearch server, the browser will automatically open a new tab.
3939
Original file line number Diff line number Diff line change 1010
1111 <groupId >com.codingchili</groupId >
1212 <artifactId >excelastic</artifactId >
13- <version >1.3.0 </version >
13+ <version >1.3.1 </version >
1414 <build >
1515 <plugins >
1616 <plugin >
Original file line number Diff line number Diff line change 2121 */
2222public class ApplicationLauncher {
2323 private final ApplicationLogger logger = new ApplicationLogger (getClass ());
24- public static String VERSION = "1.3.0 " ;
24+ public static String VERSION = "1.3.1 " ;
2525 private Vertx vertx ;
2626
2727 public static void main (String [] args ) {
You can’t perform that action at this time.
0 commit comments