diff --git a/README.md b/README.md
index 5db5b5b..3166dfe 100644
--- a/README.md
+++ b/README.md
@@ -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:
-```
-
- ScaleOut API Repository
- https://repo.scaleoutsoftware.com/repository/external
-
-```
-
And then you can add the following dependency:
```
- com.scaleoutsoftware.client
- api
- 1.0.1
+ com.scaleoutsoftware
+ client
+ 2.0.0
+
+
+
+
+
+
+ com.scaleoutsoftware
+ invocationgrid
+ 2.0.0
```