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.
27
27
28
28
Running the application, filename and index is required, to import from the terminal run:
29
29
```
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
31
31
```
32
32
If running with --clear, then the existing index will be cleared before the import starts.
33
33
34
34
To run with the web interface, run the following in your terminal:
35
35
```
36
- java -Xmx2g -jar excelastic-1.3.0 .jar
36
+ java -Xmx2g -jar excelastic.jar
37
37
```
38
38
When the application successfully connects to the ElasticSearch server, the browser will automatically open a new tab.
39
39
Original file line number Diff line number Diff line change 10
10
11
11
<groupId >com.codingchili</groupId >
12
12
<artifactId >excelastic</artifactId >
13
- <version >1.3.0 </version >
13
+ <version >1.3.1 </version >
14
14
<build >
15
15
<plugins >
16
16
<plugin >
Original file line number Diff line number Diff line change 21
21
*/
22
22
public class ApplicationLauncher {
23
23
private final ApplicationLogger logger = new ApplicationLogger (getClass ());
24
- public static String VERSION = "1.3.0 " ;
24
+ public static String VERSION = "1.3.1 " ;
25
25
private Vertx vertx ;
26
26
27
27
public static void main (String [] args ) {
You can’t perform that action at this time.
0 commit comments