Skip to content

build: change group id to com.expedia #105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 19, 2018
Merged
Show file tree
Hide file tree
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
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