Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit f2571db

Browse files
committed
Updated build settings for kickstart organization
1 parent 5a63a0f commit f2571db

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# GraphQL and Graph*i*QL Spring Framework Boot Starters
2-
[![Build Status](https://travis-ci.org/graphql-java/graphql-spring-boot.svg?branch=master)](https://travis-ci.org/graphql-java/graphql-spring-boot)
2+
[![Build Status](https://travis-ci.org/graphql-java-kickstart/graphql-spring-boot.svg?branch=master)](https://travis-ci.org/graphql-java-kickstart/graphql-spring-boot)
33
[![Maven Central](https://img.shields.io/maven-central/v/com.graphql-java/graphql-spring-boot-starter.svg)](https://maven-badges.herokuapp.com/maven-central/com.graphql-java/graphql-spring-boot-starter)
4-
[![Chat on Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/graphql-java/graphql-java)
4+
[![Chat on Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/graphql-java-kickstart/Lobby)
55

66
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
77
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
@@ -12,7 +12,7 @@
1212
- [Enable GraphQL Servlet](#enable-graphql-servlet)
1313
- [Enable GraphiQL](#enable-graphiql)
1414
- [Supported GraphQL-Java Libraries](#supported-graphql-java-libraries)
15-
- [GraphQL Java Tools](#graphql-java-tools) - [https://github.com/graphql-java/graphql-java-tools](https://github.com/graphql-java/graphql-java-tools)
15+
- [GraphQL Java Tools](#graphql-java-tools) - [https://github.com/graphql-java-kickstart/graphql-java-tools](https://github.com/graphql-java-kickstart/graphql-java-tools)
1616
- [GraphQL Spring Common](#graphql-spring-common) - [https://github.com/oembedler/spring-graphql-common](https://github.com/oembedler/spring-graphql-common)
1717
- [Contributions](#contributions)
1818
- [Licenses](#licenses)
@@ -24,7 +24,7 @@
2424

2525
Repository contains:
2626

27-
* `graphql-spring-boot-starter` to turn your boot application into GraphQL server (see [graphql-java-servlet](https://github.com/graphql-java/graphql-java-servlet))
27+
* `graphql-spring-boot-starter` to turn your boot application into GraphQL server (see [graphql-java-servlet](https://github.com/graphql-java-kickstart/graphql-java-servlet))
2828
* `graphiql-spring-boot-starter`to embed `GraphiQL` tool for schema introspection and query debugging (see [graphiql](https://github.com/graphql/graphiql))
2929

3030
# Requirements and Downloads
@@ -77,11 +77,11 @@ Maven:
7777

7878
# Enable GraphQL Servlet
7979

80-
The servlet becomes accessible at `/graphql` if `graphql-spring-boot-starter` added as a dependency to a boot application and a `GraphQLSchema` bean is present in the application. Check out the [simple example](https://github.com/graphql-java/graphql-spring-boot/tree/master/example) for the bare minimum required.
80+
The servlet becomes accessible at `/graphql` if `graphql-spring-boot-starter` added as a dependency to a boot application and a `GraphQLSchema` bean is present in the application. Check out the [simple example](https://github.com/graphql-java-kickstart/graphql-spring-boot/tree/master/example) for the bare minimum required.
8181

82-
A GraphQL schema can also be automatically created when a [supported graphql-java schema library](https://github.com/graphql-java/graphql-spring-boot/blob/master/README.md#supported-graphql-java-libraries) is found on the classpath.
82+
A GraphQL schema can also be automatically created when a [supported graphql-java schema library](https://github.com/graphql-java-kickstart/graphql-spring-boot/blob/master/README.md#supported-graphql-java-libraries) is found on the classpath.
8383

84-
See the [graphql-java-servlet usage docs](https://github.com/graphql-java/graphql-java-servlet#usage) for the avaiable endpoints exposed.
84+
See the [graphql-java-servlet usage docs](https://github.com/graphql-java-kickstart/graphql-java-servlet#usage) for the avaiable endpoints exposed.
8585

8686
Available Spring Boot configuration parameters (either `application.yml` or `application.properties`):
8787

@@ -141,9 +141,9 @@ Headers that are used when sending the GraphiQL queries can be set by defining t
141141
The following libraries have auto-configuration classes for creating a `GraphQLSchema`.
142142

143143
## GraphQL Java Tools
144-
**https://github.com/graphql-java/graphql-java-tools**
144+
**https://github.com/graphql-java-kickstart/graphql-java-tools**
145145

146-
All `GraphQLResolver` and `GraphQLScalar` beans, along with a bean of type `SchemaParserDictionary` (to provide all other classes), will be used to create a GraphQLSchema. Any files on the classpath named `*.graphqls` will be used to provide the schema definition. See the [Readme](https://github.com/graphql-java/graphql-java-tools#usage) for more info.
146+
All `GraphQLResolver` and `GraphQLScalar` beans, along with a bean of type `SchemaParserDictionary` (to provide all other classes), will be used to create a GraphQLSchema. Any files on the classpath named `*.graphqls` will be used to provide the schema definition. See the [Readme](https://github.com/graphql-java-kickstart/graphql-java-tools#usage) for more info.
147147

148148
Available Spring Boot configuration parameters (either `application.yml` or `application.properties`):
149149

@@ -159,7 +159,7 @@ Use the `schemaLocationPattern` property to customize this pattern.
159159
## GraphQL Spring Common [LATEST SUPPORTED VERSION: 3.1.1]
160160
**https://github.com/oembedler/spring-graphql-common**
161161

162-
See the [Readme](https://github.com/oembedler/spring-graphql-common#usage) and the [example](https://github.com/graphql-java/graphql-spring-boot/tree/master/example-spring-common) for usage instructions.
162+
See the [Readme](https://github.com/oembedler/spring-graphql-common#usage) and the [example](https://github.com/graphql-java-kickstart/graphql-spring-boot/tree/master/example-spring-common) for usage instructions.
163163

164164
#### Application Properties
165165
```yaml

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ LIB_JUNIT_VER = 4.12
4141
LIB_SPRING_CORE_VER = 5.0.4.RELEASE
4242
LIB_SPRING_BOOT_VER = 2.0.5.RELEASE
4343
LIB_GRAPHQL_SERVLET_VER = 6.1.4
44-
LIB_GRAPHQL_JAVA_TOOLS_VER = 5.3.0
44+
LIB_GRAPHQL_JAVA_TOOLS_VER = 5.3.1
4545
LIB_COMMONS_IO_VER = 2.6
4646

4747
GRADLE_WRAPPER_VER = 4.7

0 commit comments

Comments
 (0)