File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ Build jar from source with
15
15
``` shell
16
16
./gradlew build
17
17
```
18
- and find the output JAR file as ` build/libs/restructurehdfs-all-0.1.1 .jar ` . Then run with:
18
+ and find the output JAR file as ` build/libs/restructurehdfs-all-0.1.2-SNAPSHOT .jar ` . Then run with:
19
19
20
20
``` shell
21
- java -jar restructurehdfs-all-0.1.1 .jar < webhdfs_url> < hdfs_topic_path> < output_folder>
21
+ java -jar restructurehdfs-all-0.1.2-SNAPSHOT .jar < webhdfs_url> < hdfs_topic_path> < output_folder>
22
22
```
23
23
24
24
By default, this will output the data in CSV format. If JSON format is preferred, use the following instead:
25
25
```
26
- java -Dorg.radarcns.format=json -jar restructurehdfs-all-0.1.1 .jar <webhdfs_url> <hdfs_topic_path> <output_folder>
26
+ java -Dorg.radarcns.format=json -jar restructurehdfs-all-0.1.2-SNAPSHOT .jar <webhdfs_url> <hdfs_topic_path> <output_folder>
27
27
```
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply plugin: 'java'
2
2
apply plugin : ' application'
3
3
4
4
group ' org.radarcns.restructurehdfs'
5
- version ' 0.1.1 '
5
+ version ' 0.1.2-SNAPSHOT '
6
6
mainClassName = ' org.radarcns.RestructureAvroRecords'
7
7
8
8
run {
You can’t perform that action at this time.
0 commit comments