Skip to content

Commit f8c7f83

Browse files
committed
Update deps of example projects
1 parent be705db commit f8c7f83

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

plugins/gradle/example-client-kotlin/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ dependencies {
3232

3333
implementation "javax.validation:validation-api:2.0.1.Final"
3434
implementation "com.squareup.okhttp3:okhttp:4.10.0"
35-
implementation "com.fasterxml.jackson.core:jackson-core:2.14.2"
36-
implementation "com.fasterxml.jackson.core:jackson-databind:2.14.2"
37-
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.14.2"
38-
implementation "com.fasterxml.jackson.core:jackson-annotations:2.14.2"
35+
implementation "com.fasterxml.jackson.core:jackson-core:2.15.0"
36+
implementation "com.fasterxml.jackson.core:jackson-databind:2.15.0"
37+
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.15.0"
38+
implementation "com.fasterxml.jackson.core:jackson-annotations:2.15.0"
3939
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
4040

4141
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3"

plugins/gradle/example-client/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818

1919
implementation "com.graphql-java-kickstart:graphql-spring-boot-starter:11.1.0"
2020
implementation "com.graphql-java-kickstart:graphiql-spring-boot-starter:11.1.0"
21-
implementation "com.graphql-java:graphql-java-extended-scalars:20.0"
21+
implementation "com.graphql-java:graphql-java-extended-scalars:20.2"
2222

2323
// use the latest available version:
2424
// https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen
@@ -27,8 +27,8 @@ dependencies {
2727
implementation "org.apache.httpcomponents:httpclient:4.5.14"
2828
implementation "javax.validation:validation-api:2.0.1.Final"
2929

30-
implementation "org.mapstruct:mapstruct:1.5.3.Final"
31-
annotationProcessor "org.mapstruct:mapstruct-processor:1.5.3.Final"
30+
implementation "org.mapstruct:mapstruct:1.5.5.Final"
31+
annotationProcessor "org.mapstruct:mapstruct-processor:1.5.5.Final"
3232

3333
compileOnly "org.projectlombok:lombok:1.18.26"
3434
annotationProcessor "org.projectlombok:lombok:1.18.26"

plugins/gradle/example-server/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717

1818
implementation "com.graphql-java-kickstart:graphql-spring-boot-starter:11.0.0"
1919
implementation "com.graphql-java-kickstart:graphiql-spring-boot-starter:11.1.0"
20-
implementation "com.graphql-java:graphql-java-extended-scalars:20.0"
20+
implementation "com.graphql-java:graphql-java-extended-scalars:20.2"
2121

2222
implementation "javax.validation:validation-api:2.0.1.Final"
2323

@@ -26,8 +26,8 @@ dependencies {
2626

2727
implementation 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
2828

29-
implementation "org.mapstruct:mapstruct:1.5.3.Final"
30-
annotationProcessor "org.mapstruct:mapstruct-processor:1.5.3.Final"
29+
implementation "org.mapstruct:mapstruct:1.5.5.Final"
30+
annotationProcessor "org.mapstruct:mapstruct-processor:1.5.5.Final"
3131
}
3232

3333
compileJava.dependsOn "graphqlCodegen"

plugins/maven/example-client/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
<annotationProcessorPath>
112112
<groupId>org.mapstruct</groupId>
113113
<artifactId>mapstruct-processor</artifactId>
114-
<version>1.5.3.Final</version>
114+
<version>1.5.5.Final</version>
115115
</annotationProcessorPath>
116116
</annotationProcessorPaths>
117117
</configuration>
@@ -144,7 +144,7 @@
144144
<dependency>
145145
<groupId>com.graphql-java</groupId>
146146
<artifactId>graphql-java-extended-scalars</artifactId>
147-
<version>20.0</version>
147+
<version>20.2</version>
148148
</dependency>
149149

150150

@@ -169,7 +169,7 @@
169169
<dependency>
170170
<groupId>org.mapstruct</groupId>
171171
<artifactId>mapstruct</artifactId>
172-
<version>1.5.3.Final</version>
172+
<version>1.5.5.Final</version>
173173
</dependency>
174174
<dependency>
175175
<groupId>org.projectlombok</groupId>

plugins/maven/example-server/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<annotationProcessorPath>
6565
<groupId>org.mapstruct</groupId>
6666
<artifactId>mapstruct-processor</artifactId>
67-
<version>1.5.3.Final</version>
67+
<version>1.5.5.Final</version>
6868
</annotationProcessorPath>
6969
</annotationProcessorPaths>
7070
</configuration>
@@ -97,7 +97,7 @@
9797
<dependency>
9898
<groupId>com.graphql-java</groupId>
9999
<artifactId>graphql-java-extended-scalars</artifactId>
100-
<version>20.0</version>
100+
<version>20.2</version>
101101
</dependency>
102102

103103
<dependency>
@@ -109,7 +109,7 @@
109109
<dependency>
110110
<groupId>org.mapstruct</groupId>
111111
<artifactId>mapstruct</artifactId>
112-
<version>1.5.3.Final</version>
112+
<version>1.5.5.Final</version>
113113
</dependency>
114114
<dependency>
115115
<groupId>org.projectlombok</groupId>

0 commit comments

Comments
 (0)