Skip to content

Commit bfa927b

Browse files
smyrickdariuszkuc
authored andcommitted
Update READMEs with new maven central link (ExpediaGroup#336)
* Update maven central badges
1 parent 8bf3b00 commit bfa927b

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@
22

33
[![Build Status](https://travis-ci.org/ExpediaGroup/graphql-kotlin.svg?branch=master)](https://travis-ci.org/ExpediaGroup/graphql-kotlin)
44
[![codecov](https://codecov.io/gh/ExpediaGroup/graphql-kotlin/branch/master/graph/badge.svg)](https://codecov.io/gh/ExpediaGroup/graphql-kotlin)
5-
[![Maven Central](https://img.shields.io/maven-central/v/com.expedia/graphql-kotlin.svg?label=maven%20central)](https://search.maven.org/artifact/com.expedia/graphql-kotlin)
65
[![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin)
76

87
GraphQL Kotlin consists of number of libraries that aim to simplify GraphQL integration for Kotlin applications.
98

109
## 📦 Modules
1110

12-
* [graphql-kotlin-federation](/graphql-kotlin-federation) - Schema generator extension to build federated GraphQL schemas
1311
* [graphql-kotlin-schema-generator](/graphql-kotlin-schema-generator) - Code only GraphQL schema generation for Kotlin
14-
* [examples/spring](/examples/spring) - Example SpringBoot app that uses GraphQL Kotlin schema generator
15-
* [examples/federation](/examples/federation) - Example Federation module with multiple SpringBoot apps that use GraphQL Kotlin federation generator
12+
* [graphql-kotlin-federation](/graphql-kotlin-federation) - Schema generator extension to build federated GraphQL schemas
13+
* [examples](/examples) - Example apps that use graphql-kotlin libraries to test and demonstrate usages
1614

1715
## 📋 Documentation
1816

graphql-kotlin-federation/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GraphQL Kotlin Federated Schema Generator
2-
[![Maven Central](https://img.shields.io/maven-central/v/com.expedia/graphql-kotlin-federation.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.expedia%22%20AND%20a:%22graphql-kotlin-federation%22)
3-
[![Javadocs](https://img.shields.io/maven-central/v/com.expedia/graphql-kotlin-federation.svg?label=javadoc&colorB=brightgreen)](https://www.javadoc.io/doc/com.expedia/graphql-kotlin-federation)
2+
[![Maven Central](https://img.shields.io/maven-central/v/com.expediagroup/graphql-kotlin-federation.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.expediagroup%22%20AND%20a:%22graphql-kotlin-federation%22)
3+
[![Javadocs](https://img.shields.io/maven-central/v/com.expediagroup/graphql-kotlin-federation.svg?label=javadoc&colorB=brightgreen)](https://www.javadoc.io/doc/com.expediagroup/graphql-kotlin-federation)
44

55
`graphql-kotlin-federation` extends the functionality of `graphql-kotlin-schema-generator` and allows you to easily generate federated GraphQL schemas directly from the code. Federated schemas rely on a number of directives to instrument the behavior of the underlying graph, see corresponding wiki pages to learn more about new directives. Once all the federated objects are annotated, you will also have to configure corresponding [FederatedTypeResolver]s that are used to instantiate federated objects and finally generate the schema using `toFederatedSchema` function ([link](https://github.com/ExpediaGroup/graphql-kotlin/blob/master/graphql-kotlin-federation/src/main/kotlin/com/expedia/graphql/federation/toFederatedSchema.kt#L18)).
66

@@ -24,7 +24,7 @@ With Maven:
2424
With Gradle:
2525

2626
```groovy
27-
compile(group: 'com.expedia', name: 'graphql-kotlin-federation', version: "$latestVersion")
27+
compile(group: 'com.expediagroup', name: 'graphql-kotlin-federation', version: "$latestVersion")
2828
```
2929

3030
## Usage

graphql-kotlin-schema-generator/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GraphQL Kotlin Schema Generator
2-
[![Maven Central](https://img.shields.io/maven-central/v/com.expedia/graphql-kotlin-schema-generator.svg?label=maven%20central)](https://search.maven.org/artifact/com.expedia/graphql-kotlin-schema-generator)
3-
[![Javadocs](https://img.shields.io/maven-central/v/com.expedia/graphql-kotlin-schema-generator.svg?label=javadoc&colorB=brightgreen)](https://www.javadoc.io/doc/com.expedia/graphql-kotlin-schema-generator)
2+
[![Maven Central](https://img.shields.io/maven-central/v/com.expediagroup/graphql-kotlin-schema-generator.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.expediagroup%22%20AND%20a:%22graphql-kotlin-schema-generator%22)
3+
[![Javadocs](https://img.shields.io/maven-central/v/com.expediagroup/graphql-kotlin-schema-generator.svg?label=javadoc&colorB=brightgreen)](https://www.javadoc.io/doc/com.expediagroup/graphql-kotlin-schema-generator)
44

55
Most GraphQL libraries require developers to maintain two sources of truth for their GraphQL API: the schema and the corresponding code (data fetchers or resolvers, and types). Given the similarities between Kotlin and GraphQL, such as the ability to define nullable/non-nullable types, a schema can be generated from Kotlin code without any separate schema specification. `graphql-kotlin` builds upon `graphql-java` to allow code-only, or resolver-first, GraphQL services to be built.
66

@@ -25,7 +25,7 @@ With Maven:
2525
With Gradle:
2626

2727
```groovy
28-
compile(group: 'com.expedia', name: 'graphql-kotlin-schema-generator', version: "$latestVersion")
28+
compile(group: 'com.expediagroup', name: 'graphql-kotlin-schema-generator', version: "$latestVersion")
2929
```
3030

3131
## Usage

0 commit comments

Comments
 (0)