You can download the library on the projects download page on Google Code.
If you are developing with Maven, you can add the library to your projects' dependencies:
<dependency>
<groupId>com.bramosystems.oss.player</groupId>
<artifactId>bst-player-api</artifactId>
<version>${appropriate-version}</version>
<scope>provided</scope>
</dependency>However, you will need to add the Bramosystems Maven Repository definition to your POM:
<repositories>
. . .
<repository>
<id>bramosystems-releases</id>
<name>Bramosystems Release Repository</name>
<url>http://downloads.bramosystems.com/maven2/releases</url>
</repository>
. . .
</repositories>If you will also like to use the snapshots;
<repositories>
. . .
<repository>
<id>bramosystems-snapshot</id>
<name>Bramosystems Snapshots Repository</name>
<url>http://downloads.bramosystems.com/maven2/snapshots</url>
</repository>
. . .
</repositories>