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: "scaleout-client", version: '3.2.1'
// Use the following for ScaleOut Java InvocationGrid hosting APIs
compile group: 'com.scaleoutsoftware', name: "scaleout-invocationgrid", version: '3.2.1'

Maven

ScaleOut StateServer Libraries

<dependencies>

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