Skip to content

Commit

Permalink
Merge pull request #16 from wscarter/patch-1
Browse files Browse the repository at this point in the history
update readme to include gradle instructions
  • Loading branch information
trystan committed Jun 12, 2018
2 parents 7b0dbce + 4642f3b commit ac179b1
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.MD
Expand Up @@ -68,6 +68,24 @@ which provides AsciiPanel as dependency at:

where `<version/>` describes the git commit you want to use.

For Gradle users:

```gradle
repositories {
//...
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
}
dependencies {
//...
compile 'com.github.trystan:AsciiPanel:master-SNAPSHOT'
}
```

## Notes

This project is built with Java 8. However the code itself does not *require* Java 8. If you are supporting a project running an earlier version of Java, you can change the pom file and rebuild the jar using your chosen version of Java without having to modify the code.
This project is built with Java 8. However the code itself does not *require* Java 8. If you are supporting a project running an earlier version of Java, you can change the pom file and rebuild the jar using your chosen version of Java without having to modify the code.

0 comments on commit ac179b1

Please sign in to comment.