Skip to content

Commit 921e487

Browse files
committed
Fix versions in pom file.
1 parent d00e3c9 commit 921e487

File tree

10 files changed

+8
-43
lines changed

10 files changed

+8
-43
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ for **GraphQL Java Kickstart**:
7575
<dependency>
7676
<groupId>com.tailrocks.graphql</groupId>
7777
<artifactId>graphql-datetime-kickstart-spring-boot-starter</artifactId>
78-
<version>5.0.0</version>
78+
<version>5.0.1</version>
7979
</dependency>
8080
```
8181

@@ -85,7 +85,7 @@ for **Netflix DGS**:
8585
<dependency>
8686
<groupId>com.tailrocks.graphql</groupId>
8787
<artifactId>graphql-datetime-dgs-starter</artifactId>
88-
<version>5.0.0</version>
88+
<version>5.0.1</version>
8989
</dependency>
9090
```
9191

@@ -95,7 +95,7 @@ for **Spring GraphQL**:
9595
<dependency>
9696
<groupId>com.tailrocks.graphql</groupId>
9797
<artifactId>graphql-datetime-spring-boot-starter</artifactId>
98-
<version>5.0.0</version>
98+
<version>5.0.1</version>
9999
</dependency>
100100
```
101101

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

108108
```groovy
109-
implementation("com.tailrocks.graphql:graphql-datetime-kickstart-spring-boot-starter:5.0.0")
109+
implementation("com.tailrocks.graphql:graphql-datetime-kickstart-spring-boot-starter:5.0.1")
110110
```
111111

112112
for **DGS**:
113113

114114
```groovy
115-
implementation("com.tailrocks.graphql:graphql-datetime-dgs-starter:5.0.0")
115+
implementation("com.tailrocks.graphql:graphql-datetime-dgs-starter:5.0.1")
116116
```
117117

118118
for **Spring GraphQL**:
119119

120120
```groovy
121-
implementation("com.tailrocks.graphql:graphql-datetime-spring-boot-starter:5.0.0")
121+
implementation("com.tailrocks.graphql:graphql-datetime-spring-boot-starter:5.0.1")
122122
```
123123

124124
### Scalars

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ kotlin.stdlib.default.dependency=false
88

99
# Project
1010

11-
projectVersion=5.0.0
11+
projectVersion=5.0.1
1212
projectName=graphql-java-datetime
1313
projectDescription=The set of RFC 3339 compliant date/time scalar types for GraphQL Java implementation
1414
projectLicenseShortName=Apache-2.0

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ commons-text = { module = "org.apache.commons:commons-text", version.ref = "comm
2323
spock-core = { module = "org.spockframework:spock-core", version.ref = "spock" }
2424
spock-spring = { module = "org.spockframework:spock-spring", version.ref = "spock" }
2525
graphql-java = { module = "com.graphql-java:graphql-java", version.ref = "graphql-java" }
26-
tailrocks-maven-publish-conventions = { module = "com.tailrocks.gradle:maven-publish-conventions", version = "0.1.8" }
26+
tailrocks-maven-publish-conventions = { module = "com.tailrocks.gradle:maven-publish-conventions", version = "0.1.9" }
2727
tailrocks-signing-conventions = { module = "com.tailrocks.gradle:signing-conventions", version = "0.1.3" }
2828

2929
[plugins]

graphql-datetime-dgs-autoconfigure/build.gradle.kts

-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ plugins {
33
id("graphql-datetime-library-conventions")
44
}
55

6-
java {
7-
withJavadocJar()
8-
withSourcesJar()
9-
}
10-
116
dependencies {
127
api(project(":graphql-datetime-spring-boot-common"))
138

graphql-datetime-dgs-starter/build.gradle.kts

-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ plugins {
22
id("graphql-datetime-library-conventions")
33
}
44

5-
java {
6-
withJavadocJar()
7-
withSourcesJar()
8-
}
9-
105
dependencies {
116
api(project(":graphql-datetime-dgs-autoconfigure"))
127

graphql-datetime-kickstart-spring-boot-starter/build.gradle.kts

-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ plugins {
22
id("graphql-datetime-library-conventions")
33
}
44

5-
java {
6-
withJavadocJar()
7-
withSourcesJar()
8-
}
9-
105
dependencies {
116
api(project(":graphql-datetime-spring-boot-common"))
127

graphql-datetime-spring-boot-autoconfigure/build.gradle.kts

-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ plugins {
33
id("graphql-datetime-library-conventions")
44
}
55

6-
java {
7-
withJavadocJar()
8-
withSourcesJar()
9-
}
10-
116
dependencies {
127
api(project(":graphql-datetime-spring-boot-common"))
138

graphql-datetime-spring-boot-common/build.gradle.kts

-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ plugins {
33
id("graphql-datetime-library-conventions")
44
}
55

6-
java {
7-
withJavadocJar()
8-
withSourcesJar()
9-
}
10-
116
dependencies {
127
api(project(":graphql-java-datetime"))
138

graphql-datetime-spring-boot-starter/build.gradle.kts

-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ plugins {
22
id("graphql-datetime-library-conventions")
33
}
44

5-
java {
6-
withJavadocJar()
7-
withSourcesJar()
8-
}
9-
105
dependencies {
116
api(project(":graphql-datetime-spring-boot-autoconfigure"))
127

graphql-java-datetime/build.gradle.kts

-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ plugins {
44
id("graphql-datetime-library-conventions")
55
}
66

7-
java {
8-
withJavadocJar()
9-
withSourcesJar()
10-
}
11-
127
dependencies {
138
api(libs.graphql.java)
149

0 commit comments

Comments
 (0)