Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Commit

Permalink
Update versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
gijskant committed Mar 27, 2017
1 parent 9e78b0f commit 4d8f919
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
/.classpath
/.project
/.settings
/.idea
*.iml
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@
Simple SAS7BDAT to CSV conversion tool based on the [Parso library](http://lifescience.opensource.epam.com/parso.html)
and [opencsv](http://opencsv.sourceforge.net).

### Build and run
### Download
The latest version can be downloaded here:
[sas-convert-0.3.jar](https://github.com/thehyve/sas-convert/releases/download/0.3/sas-convert-0.3.jar).

```bash
mvn package
java -jar target/sas-convert-0.2.jar <file.sas7bdat> <file.csv>
# Download sas-convert
curl https://github.com/thehyve/sas-convert/releases/download/0.3/sas-convert-0.3.jar -o sas-convert-0.3.jar
```

### Install in home directory
```bash
cp target/sas-convert-0.2.jar ~/bin/sas-convert.jar
cp sas-convert-0.3.jar ~/bin/sas-convert.jar
chmod +x ~/bin/sas-convert.jar
```
If your `~/bin` directory is not in your path, add these lines to `~/.profile`:
Expand All @@ -23,3 +26,9 @@ Usage:
```bash
sas-convert.jar <file.sas> <file.csv>
```

### Build and run from source
```bash
mvn package
java -jar target/sas-convert-0.3.jar <file.sas7bdat> <file.csv>
```
17 changes: 8 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>thehyve</groupId>
<artifactId>sas-convert</artifactId>
<version>0.2</version>
<version>0.3</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -19,40 +19,40 @@
<dependency>
<groupId>com.epam</groupId>
<artifactId>parso</artifactId>
<version>2.0</version>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>3.8</version>
<version>3.9</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.3.1</version>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.21</version>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.7</version>
<version>1.2.2</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.7</version>
<version>2.4.10</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -73,4 +73,3 @@
</plugins>
</build>
</project>

0 comments on commit 4d8f919

Please sign in to comment.