Skip to content

Commit

Permalink
Fix README.
Browse files Browse the repository at this point in the history
  • Loading branch information
daquino committed Jun 26, 2015
1 parent 4b3f008 commit 031c464
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ convert to the sql type, it could be because of the desired database type not su
in the source change log file._

### Usage
#### Bash shell
```
liquify [-options] <source>
Options:
Expand All @@ -25,6 +26,21 @@ Example Usage:
liquify -t sql -db oracle db.changelog.xml (db.changelog.xml => db.changelog.oracle.sql)
```

#### Java
```
java -jar liquify.jar [-options] <source>
Options:
Required:
-t,--type Target changelog file type (xml,yaml,json,sql).
Conditional:
-db,--database Database type to use when using the sql type (i.e oracle, h2, etc).
Example Usage:
java.jar liquify.jar -t sql -db oracle db.changelog.xml (db.changelog.xml => db.changelog.oracle.sql)
```

### Building
The project requires JDK 1.6+. To build the project, simple run the following gradle wrapper command:
```./gradlew dist```
Expand Down

0 comments on commit 031c464

Please sign in to comment.