diff --git a/README.md b/README.md
index 3cac145..ef347b6 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-# Complimentary Load Balancing Policies for Apache Cassandra Java Driver
-This package contains two load balancing policies to be used with the [Apache Cassandra Java Driver](https://github.com/apache/cassandra-java-driver) (version 4.10.0+) - `LatencyAndInflightCountLoadBalancingPolicy` and `LatencySensitiveLoadBalancingPolicy`.
+# Supplementary Policies for Apache Cassandra Java Driver
+Currently, this package contains two load balancing policies to be used with the [Apache Cassandra Java Driver](https://github.com/apache/cassandra-java-driver) (version 4.10.0+) - `LatencyAndInflightCountLoadBalancingPolicy` and `LatencySensitiveLoadBalancingPolicy`.
 
 ## Get Started
 To use either of the policies, you need to include both the Java driver and this package as dependencies.
@@ -11,7 +11,7 @@ To use either of the policies, you need to include both the Java driver and this
         </dependency>
         <dependency>
             <groupId>com.datastax.oss</groupId>
-            <artifactId>driver-load-balancing-policies</artifactId>
+            <artifactId>java-driver-policies</artifactId>
             <version>1.0</version>
         </dependency>
 ```
diff --git a/pom.xml b/pom.xml
index 69c76cf..585e46c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <groupId>com.datastax.oss</groupId>
-    <artifactId>driver-load-balancing-policies</artifactId>
+    <artifactId>java-driver-policies</artifactId>
     <version>1.0-SNAPSHOT</version>
     <properties>
         <maven.compiler.source>8</maven.compiler.source>