Skip to content

Commit

Permalink
Update gradle and usage command line in Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Feliciano Long committed Jun 3, 2016
1 parent 1cddbd3 commit d674f7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Supported platforms: Anywhere you can run a Java program

## Usage

> xlsx2json target_name "sheet_name_1 sheet_name_2 ..." [true|false]
> java -jar xlsx2json-x.x.jar target_name "sheet_name_1 sheet_name_2 ..." [true|false]
Example

> xlsx2json test.xlsx "monsters maps weapons"
> java -jar xlsx2json-1.2.jar test.xlsx "monsters maps weapons"
#### Arguments

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'moe.imvery.utils'
version '1.1'
version '1.2'

apply plugin: 'java'

Expand Down Expand Up @@ -32,7 +32,7 @@ task fatJar(type: Jar) {
'Implementation-Version': version,
'Main-Class': 'moe.imvery.utils.xlsx2json.ExcelParserMain'
}
baseName = project.name + '-all'
baseName = project.name
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}

0 comments on commit d674f7d

Please sign in to comment.