Skip to content

Commit 73d116f

Browse files
smyrickdariuszkuc
authored andcommitted
build: change group id to com.expedia (#105)
1 parent 1ce9aa3 commit 73d116f

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# GraphQL Kotlin
22

3-
[![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)
3+
[![Build Status](https://travis-ci.org/ExpediaDotCom/graphql-kotlin.svg?branch=master)](https://travis-ci.org/ExpediaDotCom/graphql-kotlin)
4+
[![codecov](https://codecov.io/gh/ExpediaDotCom/graphql-kotlin/branch/master/graph/badge.svg)](https://codecov.io/gh/ExpediaDotCom/graphql-kotlin)
5+
[![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)
6+
[![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin)
47

58
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.
69

@@ -16,7 +19,7 @@ With Maven:
1619

1720
```xml
1821
<dependency>
19-
<groupId>com.expedia.www</groupId>
22+
<groupId>com.expedia</groupId>
2023
<artifactId>graphql-kotlin</artifactId>
2124
<version>${latestVersion}</version>
2225
</dependency>
@@ -25,7 +28,7 @@ With Maven:
2528
With Gradle:
2629

2730
```groovy
28-
compile(group: 'com.expedia.www', name: 'graphql-kotlin', version: "$latestVersion")
31+
compile(group: 'com.expedia', name: 'graphql-kotlin', version: "$latestVersion")
2932
```
3033

3134
## Usage

example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<relativePath/>
1010
</parent>
1111

12-
<groupId>com.expedia.www</groupId>
12+
<groupId>com.expedia</groupId>
1313
<artifactId>graphql-kotlin-example</artifactId>
1414
<version>0.0.1-SNAPSHOT</version>
1515
<name>graphql-kotlin-example</name>
@@ -109,7 +109,7 @@
109109

110110
<dependencies>
111111
<dependency>
112-
<groupId>com.expedia.www</groupId>
112+
<groupId>com.expedia</groupId>
113113
<artifactId>graphql-kotlin</artifactId>
114114
<version>${graphql-kotlin.version}</version>
115115
</dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>com.expedia.www</groupId>
6+
<groupId>com.expedia</groupId>
77
<artifactId>graphql-kotlin</artifactId>
88
<version>0.0.27-SNAPSHOT</version>
99
<name>graphql-kotlin</name>

0 commit comments

Comments
 (0)