Skip to content

Commit

Permalink
build: change group id to com.expedia (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
smyrick authored and dariuszkuc committed Dec 19, 2018
1 parent 1ce9aa3 commit 73d116f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -16,7 +19,7 @@ With Maven:

```xml
<dependency>
<groupId>com.expedia.www</groupId>
<groupId>com.expedia</groupId>
<artifactId>graphql-kotlin</artifactId>
<version>${latestVersion}</version>
</dependency>
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<relativePath/>
</parent>

<groupId>com.expedia.www</groupId>
<groupId>com.expedia</groupId>
<artifactId>graphql-kotlin-example</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>graphql-kotlin-example</name>
Expand Down Expand Up @@ -109,7 +109,7 @@

<dependencies>
<dependency>
<groupId>com.expedia.www</groupId>
<groupId>com.expedia</groupId>
<artifactId>graphql-kotlin</artifactId>
<version>${graphql-kotlin.version}</version>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.expedia.www</groupId>
<groupId>com.expedia</groupId>
<artifactId>graphql-kotlin</artifactId>
<version>0.0.27-SNAPSHOT</version>
<name>graphql-kotlin</name>
Expand Down

0 comments on commit 73d116f

Please sign in to comment.