diff --git a/README.md b/README.md
index d1f2329e95..36c931cb04 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,9 @@
# GraphQL Kotlin
-[![Build Status](https://travis-ci.org/ExpediaDotCom/graphql-kotlin.svg?branch=master)](https://travis-ci.org/ExpediaDotCom/graphql-kotlin) [![codecov](https://codecov.io/gh/ExpediaDotCom/graphql-kotlin/branch/master/graph/badge.svg)](https://codecov.io/gh/ExpediaDotCom/graphql-kotlin) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.expedia.www/graphql-kotlin/badge.png)](https://maven-badges.herokuapp.com/maven-central/com.expedia.www/graphql-kotlin) [![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin)
+[![Build Status](https://travis-ci.org/ExpediaDotCom/graphql-kotlin.svg?branch=master)](https://travis-ci.org/ExpediaDotCom/graphql-kotlin)
+[![codecov](https://codecov.io/gh/ExpediaDotCom/graphql-kotlin/branch/master/graph/badge.svg)](https://codecov.io/gh/ExpediaDotCom/graphql-kotlin)
+[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.expedia/graphql-kotlin/badge.png)](https://maven-badges.herokuapp.com/maven-central/com.expedia/graphql-kotlin)
+[![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin)
Most GraphQL libraries for the JVM require developers to maintain two sources of truth for their GraphQL API, the schema and the corresponding code (data fetchers and types). Given the similarities between Kotlin and GraphQL, such as the ability to define nullable/non-nullable types, a schema should be able to be generated from Kotlin code without any separate schema specification. `graphql-kotlin` builds upon `graphql-java` to allow code-only GraphQL services to be built.
@@ -16,7 +19,7 @@ With Maven:
```xml
- com.expedia.www
+ com.expedia
graphql-kotlin
${latestVersion}
@@ -25,7 +28,7 @@ With Maven:
With Gradle:
```groovy
-compile(group: 'com.expedia.www', name: 'graphql-kotlin', version: "$latestVersion")
+compile(group: 'com.expedia', name: 'graphql-kotlin', version: "$latestVersion")
```
## Usage
diff --git a/example/pom.xml b/example/pom.xml
index e4034a4709..67f00cbb60 100644
--- a/example/pom.xml
+++ b/example/pom.xml
@@ -9,7 +9,7 @@
- com.expedia.www
+ com.expedia
graphql-kotlin-example
0.0.1-SNAPSHOT
graphql-kotlin-example
@@ -109,7 +109,7 @@
- com.expedia.www
+ com.expedia
graphql-kotlin
${graphql-kotlin.version}
diff --git a/pom.xml b/pom.xml
index e37b1f0817..deea6239b0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.expedia.www
+ com.expedia
graphql-kotlin
0.0.27-SNAPSHOT
graphql-kotlin