Skip to content

Commit

Permalink
Merge pull request #95 from masterav10/master
Browse files Browse the repository at this point in the history
Finishing Publish to Maven Central.
  • Loading branch information
nyholku committed Dec 28, 2016
2 parents a8c89d7 + a06ae70 commit f2496ec
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
23 changes: 22 additions & 1 deletion README.md
Expand Up @@ -6,4 +6,25 @@ PJC is written 100% in Java so it is easy for Java programmers to develop and de

PJC is BSD licensed but please note it depends on JNA which is LGPL/ASL dual licensed.


## Obtaining a Copy

PureJavaComm is deployed to Maven Central. Here are a few examples using popular build frameworks.

Using Gradle:
```groovy
repositories {
mavenCentral()
}
dependencies {
compile "com.github.purejavacomm:purejavacomm:1.0.1.RELEASE"
}
```
Using Maven:
```xml
<dependency>
<groupId>com.github.purejavacomm</groupId>
<artifactId>purejavacomm</artifactId>
<version>1.0.1.RELEASE</version>
</dependency>
```
2 changes: 1 addition & 1 deletion build.gradle
@@ -1,7 +1,7 @@
apply plugin: 'java'
apply from: 'deploy.gradle'

group "com.sparetimelabs"
group "com.github.purejavacomm"
version "1.0.1.RELEASE"

repositories {
Expand Down

0 comments on commit f2496ec

Please sign in to comment.