Skip to content
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

Up version and fixed Maven links #14

Merged
merged 1 commit into from
Jun 3, 2024
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
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ without it, you just need to provide GraphQL path as `spring.graphql.path` param

## GraphQL Voyager

[![Maven Central](https://img.shields.io/maven-central/v/ru.sadv1r.spring.graphql/graphql-voyager-spring-boot-starter)](https://search.maven.org/artifact/ru.sadv1r.spring.graphql/graphql-voyager-spring-boot-starter/0.1.0/jar)
[![Maven Central](https://img.shields.io/maven-central/v/ru.sadv1r.spring.graphql/graphql-voyager-spring-boot-starter)](https://search.maven.org/artifact/ru.sadv1r.spring.graphql/graphql-voyager-spring-boot-starter)
[![GitHub Repo stars](https://img.shields.io/github/stars/IvanGoncharov/graphql-voyager?style=social)](https://github.com/IvanGoncharov/graphql-voyager)

**GraphQL Voyager** becomes accessible at root `/voyager` (or as configured in `spring.graphql.voyager.path`).
Expand Down Expand Up @@ -43,19 +43,19 @@ graphql:
<dependency>
<groupId>ru.sadv1r.spring.graphql</groupId>
<artifactId>graphql-voyager-spring-boot-starter</artifactId>
<version>0.1.0</version>
<version>0.4.0</version>
</dependency>
```

#### Gradle

```groovy
implementation 'ru.sadv1r.spring.graphql:graphql-voyager-spring-boot-starter:0.1.0'
implementation 'ru.sadv1r.spring.graphql:graphql-voyager-spring-boot-starter:0.4.0'
```

## Graph*i*QL

[![Maven Central](https://img.shields.io/maven-central/v/ru.sadv1r.spring.graphql/graphql-graphiql-spring-boot-starter)](https://search.maven.org/artifact/ru.sadv1r.spring.graphql/graphql-graphiql-spring-boot-starter/0.1.0/jar)
[![Maven Central](https://img.shields.io/maven-central/v/ru.sadv1r.spring.graphql/graphql-graphiql-spring-boot-starter)](https://search.maven.org/artifact/ru.sadv1r.spring.graphql/graphql-graphiql-spring-boot-starter)
[![GitHub Repo stars](https://img.shields.io/github/stars/graphql/graphiql?style=social)](https://github.com/graphql/graphiql)

**Graph*i*QL** becomes accessible at root `/graphiql` (or as configured in `spring.graphql.graphiql.path`).
Expand Down Expand Up @@ -103,19 +103,19 @@ graphql:
<dependency>
<groupId>ru.sadv1r.spring.graphql</groupId>
<artifactId>graphql-graphiql-spring-boot-starter</artifactId>
<version>0.1.0</version>
<version>0.4.0</version>
</dependency>
```

#### Gradle

```groovy
implementation 'ru.sadv1r.spring.graphql:graphql-graphiql-spring-boot-starter:0.1.0'
implementation 'ru.sadv1r.spring.graphql:graphql-graphiql-spring-boot-starter:0.4.0'
```

## GraphQL Playground

[![Maven Central](https://img.shields.io/maven-central/v/ru.sadv1r.spring.graphql/graphql-playground-spring-boot-starter)](https://search.maven.org/artifact/ru.sadv1r.spring.graphql/graphql-playground-spring-boot-starter/0.1.0/jar)
[![Maven Central](https://img.shields.io/maven-central/v/ru.sadv1r.spring.graphql/graphql-playground-spring-boot-starter)](https://search.maven.org/artifact/ru.sadv1r.spring.graphql/graphql-playground-spring-boot-starter)
[![GitHub Repo stars](https://img.shields.io/github/stars/prisma-labs/graphql-playground?style=social)](https://github.com/graphql/graphql-playground)

**GraphQL Playground** becomes accessible at root `/playground` (or as configured in `spring.graphql.playground.path`).
Expand Down Expand Up @@ -202,12 +202,12 @@ graphql:
<dependency>
<groupId>ru.sadv1r.spring.graphql</groupId>
<artifactId>graphql-playground-spring-boot-starter</artifactId>
<version>0.1.0</version>
<version>0.4.0</version>
</dependency>
```

#### Gradle

```groovy
implementation 'ru.sadv1r.spring.graphql:graphql-playground-spring-boot-starter:0.1.0'
implementation 'ru.sadv1r.spring.graphql:graphql-playground-spring-boot-starter:0.4.0'
```
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ext {

subprojects {
group 'ru.sadv1r.spring.graphql'
version '0.3.0'
version '0.4.0'

repositories {
mavenCentral()
Expand Down
Loading