Skip to content

Commit 7c99246

Browse files
committed
Bumped versions
1 parent db13bef commit 7c99246

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ Build jar from source with
1515
```shell
1616
./gradlew build
1717
```
18-
and find the output JAR file as `build/libs/restructurehdfs-all-0.1.2-SNAPSHOT.jar`. Then run with:
18+
and find the output JAR file as `build/libs/restructurehdfs-all-0.2.jar`. Then run with:
1919

2020
```shell
21-
java -jar restructurehdfs-all-0.1.2-SNAPSHOT.jar <webhdfs_url> <hdfs_topic_path> <output_folder>
21+
java -jar restructurehdfs-all-0.2.jar <webhdfs_url> <hdfs_topic_path> <output_folder>
2222
```
2323

2424
By default, this will output the data in CSV format. If JSON format is preferred, use the following instead:
2525
```
26-
java -Dorg.radarcns.format=json -jar restructurehdfs-all-0.1.2-SNAPSHOT.jar <webhdfs_url> <hdfs_topic_path> <output_folder>
26+
java -Dorg.radarcns.format=json -jar restructurehdfs-all-0.2.jar <webhdfs_url> <hdfs_topic_path> <output_folder>
2727
```
2828

2929
Another option is to output the data in compressed form. All files will get the `gz` suffix, and can be decompressed with a GZIP decoder. Note that for a very small number of records, this may actually increase the file size.
3030
```
31-
java -Dorg.radarcns.compress=gzip -jar restructurehdfs-all-0.1.1.jar <webhdfs_url> <hdfs_topic_path> <output_folder>
31+
java -Dorg.radarcns.compress=gzip -jar restructurehdfs-all-0.2.jar <webhdfs_url> <hdfs_topic_path> <output_folder>
3232
```

build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'java'
22
apply plugin: 'application'
33

44
group 'org.radarcns.restructurehdfs'
5-
version '0.1.2-SNAPSHOT'
5+
version '0.2'
66
mainClassName = 'org.radarcns.RestructureAvroRecords'
77

88
run {
@@ -12,10 +12,9 @@ run {
1212
sourceCompatibility = '1.8'
1313
targetCompatibility = '1.8'
1414

15-
ext.avroVersion = '1.8.1'
16-
ext.jacksonVersion = '2.8.5'
15+
ext.avroVersion = '1.8.2'
16+
ext.jacksonVersion = '2.8.9'
1717
ext.hadoopVersion = '2.7.3'
18-
ext.log4jVersion = '2.8.1'
1918

2019
repositories {
2120
jcenter()
@@ -57,6 +56,6 @@ artifacts {
5756
}
5857

5958
task wrapper(type: Wrapper) {
60-
gradleVersion = '3.4.1'
61-
distributionUrl distributionUrl.replace("bin", "all")
59+
gradleVersion = '3.5'
60+
distributionType 'all'
6261
}

gradle/wrapper/gradle-wrapper.jar

571 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Apr 13 12:11:40 CEST 2017
1+
#Mon Jul 03 09:50:31 CEST 2017
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip

0 commit comments

Comments
 (0)