forked from sdouglass/bandcamp4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
34 lines (26 loc) · 875 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Java client for the Bandcamp API.
http://bandcamp.com/developer
Uses the Google GSON JSON library.
http://code.google.com/p/google-gson/
To use this class, instantiate a BandcampClientImpl using your Bandcamp API key.
BandcampClient bandcampClient = new BandcampClientImpl(apiKey);
To add this project as a dependency using Maven, add the following XML snippets to your pom.xml file:
<dependencies>
....
<dependency>
<groupId>org.bandcamp4j</groupId>
<artifactId>bandcamp4j</artifactId>
<version>0.2</version>
</dependency>
....
</dependencies>
....
<repositories>
....
<repository>
<id>sdouglass-releases</id>
<url>https://raw.github.com/sdouglass/sdouglass-maven-repo/master/releases</url>
</repository>
....
</repositories>
...