ScaleOut Client API Project Configuration

Gradle or Maven projects (or any build tool that uses Maven repositories) can reference the ScaleOut client APIs.

Gradle

ScaleOut StateServer Libraries

// Use the following for the ScaleOut Java client APIs
compile group: 'com.scaleoutsoftware', name: "client", version: '3.0.1'
// Use the following for ScaleOut Java InvocationGrid hosting APIs
compile group: 'com.scaleoutsoftware', name: "invocationgrid", version: '3.0.1'

Maven

ScaleOut StateServer Libraries

<dependencies>

    <!-- Use the following for the ScaleOut Java client APIs -->
    <dependency>
      <groupId>com.scaleoutsoftware</groupId>
      <artifactId>client</artifactId>
      <version>3.0.1</version>
    </dependency>
    <!-- Use the following for ScaleOut Java InvocationGrid hosting APIs -->
    <dependency>
      <groupId>com.scaleoutsoftware</groupId>
      <artifactId>invocationgrid</artifactId>
      <version>3.0.1</version>
    </dependency>
</dependencies>