Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 17 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,43 +10,37 @@ This repository houses samples for the ScaleOut Java client API.
- CachingSamples
- Standalone samples demonstrating the API

The Java ScaleOutClient and InvocationGrid libraries are available on Maven central.

Gradle

For Gradle, you can add the ScaleOut API Repository to your build.gradle by adding the following under repositories:
```
repositories {
mavenCentral()
maven {
url "https://repo.scaleoutsoftware.com/repository/external"
}
}
```

Then add the following under dependencies:
```
// Use the following for the Java ScaleOut Client API
implementation group: 'com.scaleoutsoftware.client', name: 'api', version: '1.0.1'
implementation group: 'com.scaleoutsoftware', name: 'client', version: '2.0.0'

// Use the following for the Java ScaleOut InvocationGrid API
implementation group: 'com.scaleoutsoftware', name: 'invocationgrid', version: '2.0.0'
```

Maven:

For Maven, you can add the ScaleOut API Repository to your pom.xml by adding the following repository reference:
```
<repository>
<id>ScaleOut API Repository</id>
<url>https://repo.scaleoutsoftware.com/repository/external</url>
</repository>
```

And then you can add the following dependency:
```
<dependencies>
<!-- Use the following for the Java ScaleOut Client API -->
<dependency>
<groupId>com.scaleoutsoftware.client</groupId>
<artifactId>api</artifactId>
<version>1.0.1</version>
<groupId>com.scaleoutsoftware</groupId>
<artifactId>client</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>

<dependencies>
<!-- Use the following for the Java ScaleOut InvocationGrid API -->
<dependency>
<groupId>com.scaleoutsoftware</groupId>
<artifactId>invocationgrid</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
```
Expand Down