Skip to content

Commit

Permalink
Fix versions in pom file.
Browse files Browse the repository at this point in the history
  • Loading branch information
donbeave committed Aug 26, 2022
1 parent d00e3c9 commit 921e487
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 43 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ for **GraphQL Java Kickstart**:
<dependency>
<groupId>com.tailrocks.graphql</groupId>
<artifactId>graphql-datetime-kickstart-spring-boot-starter</artifactId>
<version>5.0.0</version>
<version>5.0.1</version>
</dependency>
```

Expand All @@ -85,7 +85,7 @@ for **Netflix DGS**:
<dependency>
<groupId>com.tailrocks.graphql</groupId>
<artifactId>graphql-datetime-dgs-starter</artifactId>
<version>5.0.0</version>
<version>5.0.1</version>
</dependency>
```

Expand All @@ -95,7 +95,7 @@ for **Spring GraphQL**:
<dependency>
<groupId>com.tailrocks.graphql</groupId>
<artifactId>graphql-datetime-spring-boot-starter</artifactId>
<version>5.0.0</version>
<version>5.0.1</version>
</dependency>
```

Expand All @@ -106,19 +106,19 @@ Add the following to your `build.gradle`:
for **GraphQL Java Kickstart (Spring Boot)**:

```groovy
implementation("com.tailrocks.graphql:graphql-datetime-kickstart-spring-boot-starter:5.0.0")
implementation("com.tailrocks.graphql:graphql-datetime-kickstart-spring-boot-starter:5.0.1")
```

for **DGS**:

```groovy
implementation("com.tailrocks.graphql:graphql-datetime-dgs-starter:5.0.0")
implementation("com.tailrocks.graphql:graphql-datetime-dgs-starter:5.0.1")
```

for **Spring GraphQL**:

```groovy
implementation("com.tailrocks.graphql:graphql-datetime-spring-boot-starter:5.0.0")
implementation("com.tailrocks.graphql:graphql-datetime-spring-boot-starter:5.0.1")
```

### Scalars
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ kotlin.stdlib.default.dependency=false

# Project

projectVersion=5.0.0
projectVersion=5.0.1
projectName=graphql-java-datetime
projectDescription=The set of RFC 3339 compliant date/time scalar types for GraphQL Java implementation
projectLicenseShortName=Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ commons-text = { module = "org.apache.commons:commons-text", version.ref = "comm
spock-core = { module = "org.spockframework:spock-core", version.ref = "spock" }
spock-spring = { module = "org.spockframework:spock-spring", version.ref = "spock" }
graphql-java = { module = "com.graphql-java:graphql-java", version.ref = "graphql-java" }
tailrocks-maven-publish-conventions = { module = "com.tailrocks.gradle:maven-publish-conventions", version = "0.1.8" }
tailrocks-maven-publish-conventions = { module = "com.tailrocks.gradle:maven-publish-conventions", version = "0.1.9" }
tailrocks-signing-conventions = { module = "com.tailrocks.gradle:signing-conventions", version = "0.1.3" }

[plugins]
Expand Down
5 changes: 0 additions & 5 deletions graphql-datetime-dgs-autoconfigure/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ plugins {
id("graphql-datetime-library-conventions")
}

java {
withJavadocJar()
withSourcesJar()
}

dependencies {
api(project(":graphql-datetime-spring-boot-common"))

Expand Down
5 changes: 0 additions & 5 deletions graphql-datetime-dgs-starter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ plugins {
id("graphql-datetime-library-conventions")
}

java {
withJavadocJar()
withSourcesJar()
}

dependencies {
api(project(":graphql-datetime-dgs-autoconfigure"))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ plugins {
id("graphql-datetime-library-conventions")
}

java {
withJavadocJar()
withSourcesJar()
}

dependencies {
api(project(":graphql-datetime-spring-boot-common"))

Expand Down
5 changes: 0 additions & 5 deletions graphql-datetime-spring-boot-autoconfigure/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ plugins {
id("graphql-datetime-library-conventions")
}

java {
withJavadocJar()
withSourcesJar()
}

dependencies {
api(project(":graphql-datetime-spring-boot-common"))

Expand Down
5 changes: 0 additions & 5 deletions graphql-datetime-spring-boot-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ plugins {
id("graphql-datetime-library-conventions")
}

java {
withJavadocJar()
withSourcesJar()
}

dependencies {
api(project(":graphql-java-datetime"))

Expand Down
5 changes: 0 additions & 5 deletions graphql-datetime-spring-boot-starter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ plugins {
id("graphql-datetime-library-conventions")
}

java {
withJavadocJar()
withSourcesJar()
}

dependencies {
api(project(":graphql-datetime-spring-boot-autoconfigure"))

Expand Down
5 changes: 0 additions & 5 deletions graphql-java-datetime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ plugins {
id("graphql-datetime-library-conventions")
}

java {
withJavadocJar()
withSourcesJar()
}

dependencies {
api(libs.graphql.java)

Expand Down

0 comments on commit 921e487

Please sign in to comment.