Java library

Overview

The Seven Bridges API Java client is now available on GitHub at https://github.com/sbg/sevenbridges-java.

On this page, learn how to install Seven Bridges Java. Then follow the Java library Quickstart to get started.

Installation

Get started with Seven Bridges Java using Maven to add the following lines to the <dependencies> section of your pom.xml file.

```
    <dependency>
      <groupId>com.sevenbridges.apiclient</groupId>
      <artifactId>sevenbridges-java-api</artifactId>
      <version>0.5.0</version>
    </dependency>
    <dependency>
      <groupId>com.sevenbridges.apiclient</groupId>
      <artifactId>sevenbridges-java-httpclient</artifactId>
      <version>0.5.0</version>
      <scope>runtime</scope>
    </dependency>
```

To install using Gradle, add the following to the dependencies section of your build.gradle file:

```
dependencies {
  compile group: 'com.sevenbridges.apiclient', name: 'sevenbridges-java-api', version: '0.5.0'
  runtime group: 'com.sevenbridges.apiclient', name: 'sevenbridges-java-httpclient', version: '0.5.0'
}
```

Resources