Skip to content

Commit cc97f9c

Browse files
committed
jar naming
1 parent 7efff93 commit cc97f9c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

BUILD.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ or
1212
```bash
1313
mvn -Plocal clean package
1414
```
15-
to build a desired flavor of [datacooker-etl-cli.jar](./datacooker-etl-cli/target/datacooker-etl-cli.jar).
15+
to build a desired flavor of [datacooker-etl.jar](./datacooker-etl-cli/target/datacooker-etl.jar).
1616

1717
Currently supported version of EMR is 7.2. For local debugging, Ubuntu 22.04 is recommended (either native or inside WSL).
1818

EXECUTE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cells indicate unsupported modes.
2121
To familiarize with CLI command line, just invoke artifact with `-h` as lone argument:
2222

2323
```bash
24-
java -jar datacooker-etl-cli.jar -h
24+
java -jar datacooker-etl.jar -h
2525
```
2626

2727
If its output is similar to
@@ -133,7 +133,7 @@ OPTIONS
133133

134134
To generate an HTML file with highlighted syntax from the ETL script file, call the supplementary `Highlighter` utility:
135135
```bash
136-
java -cp ./datacooker-etl-cli.jar io.github.pastorgl.datacooker.cli.Highlighter /path/to/script.tdl > output.html
136+
java -cp ./datacooker-etl.jar io.github.pastorgl.datacooker.cli.Highlighter /path/to/script.tdl > output.html
137137
```
138138

139139
### Exit Codes

datacooker-etl-cli/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@
225225
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
226226
</manifest>
227227
</archive>
228-
<finalName>datacooker-etl-cli</finalName>
228+
<finalName>datacooker-etl</finalName>
229229
</configuration>
230230
<executions>
231231
<execution>

0 commit comments

Comments
 (0)