Fixing Maven coordinates.

This commit is contained in:
Rob Greene 2018-05-26 21:11:38 -05:00
parent d488113b84
commit ae4a1272d0

View File

@ -9,7 +9,7 @@ To include in a Maven project:
```xml ```xml
<dependency> <dependency>
<groupId>net.sf.applecommander</groupId> <groupId>net.sf.applecommander</groupId>
<artifactId>applesingle</artifactId> <artifactId>applesingle-api</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
</dependency> </dependency>
``` ```
@ -19,7 +19,7 @@ To include in a Gradle project:
```groovy ```groovy
dependencies { dependencies {
// ... // ...
compile "net.sf.applecommander:applesingle:1.0.0" compile "net.sf.applecommander:applesingle-api:1.0.0"
// ... // ...
} }
``` ```