Skip to content

Commit 77090f7

Browse files
committed
Update dependencies for gradle and maven
1 parent a18ed9b commit 77090f7

File tree

8 files changed

+33
-33
lines changed

8 files changed

+33
-33
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ repositories {
1919
}
2020

2121
dependencies {
22-
compileOnly "org.freemarker:freemarker:2.3.32"
23-
compileOnly "com.graphql-java:graphql-java:20.2"
24-
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.15.3"
22+
compileOnly "org.freemarker:freemarker:2.3.34"
23+
compileOnly "com.graphql-java:graphql-java:20.9"
24+
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.15.4"
2525
compileOnly "com.typesafe:config:1.4.3"
2626

27-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.2"
28-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.2"
29-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.2"
27+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.5"
28+
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.5"
29+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.5"
3030
testImplementation "org.hamcrest:java-hamcrest:2.0.0.0"
3131
}
3232

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ dependencies {
3232

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

41-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.2"
42-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.2"
41+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.5"
42+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.5"
4343
}
4444

4545
/**

plugins/gradle/example-client/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ dependencies {
3030
implementation "org.mapstruct:mapstruct:1.5.5.Final"
3131
annotationProcessor "org.mapstruct:mapstruct-processor:1.5.5.Final"
3232

33-
compileOnly "org.projectlombok:lombok:1.18.30"
34-
annotationProcessor "org.projectlombok:lombok:1.18.30"
33+
compileOnly "org.projectlombok:lombok:1.18.36"
34+
annotationProcessor "org.projectlombok:lombok:1.18.36"
3535

3636
testImplementation "io.rest-assured:rest-assured:5.3.2"
37-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.2"
38-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.2"
37+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.5"
38+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.5"
3939
}
4040

4141

plugins/gradle/example-server/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ dependencies {
2121

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

24-
compileOnly "org.projectlombok:lombok:1.18.30"
25-
annotationProcessor "org.projectlombok:lombok:1.18.30"
24+
compileOnly "org.projectlombok:lombok:1.18.36"
25+
annotationProcessor "org.projectlombok:lombok:1.18.36"
2626

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

plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ dependencies {
2626

2727
implementation "io.github.kobylynskyi:graphql-java-codegen:${version}"
2828

29-
implementation "org.freemarker:freemarker:2.3.32"
30-
implementation "com.graphql-java:graphql-java:20.2"
31-
implementation "com.fasterxml.jackson.core:jackson-databind:2.15.3"
29+
implementation "org.freemarker:freemarker:2.3.34"
30+
implementation "com.graphql-java:graphql-java:20.9"
31+
implementation "com.fasterxml.jackson.core:jackson-databind:2.15.4"
3232
implementation "com.typesafe:config:1.4.3"
3333

34-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
35-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
34+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.5'
35+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.5'
3636
}
3737

3838
gradlePlugin {

plugins/maven/example-client/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
<annotationProcessorPath>
107107
<groupId>org.projectlombok</groupId>
108108
<artifactId>lombok</artifactId>
109-
<version>1.18.26</version>
109+
<version>1.18.36</version>
110110
</annotationProcessorPath>
111111
<annotationProcessorPath>
112112
<groupId>org.mapstruct</groupId>
@@ -123,7 +123,7 @@
123123
<dependency>
124124
<groupId>org.springframework.boot</groupId>
125125
<artifactId>spring-boot-starter-web</artifactId>
126-
<version>2.7.10</version>
126+
<version>2.7.18</version>
127127
</dependency>
128128
<dependency>
129129
<groupId>org.springframework.boot</groupId>
@@ -174,7 +174,7 @@
174174
<dependency>
175175
<groupId>org.projectlombok</groupId>
176176
<artifactId>lombok</artifactId>
177-
<version>1.18.30</version>
177+
<version>1.18.36</version>
178178
</dependency>
179179

180180
<dependency>
@@ -185,12 +185,12 @@
185185
<dependency>
186186
<groupId>org.junit.jupiter</groupId>
187187
<artifactId>junit-jupiter-api</artifactId>
188-
<version>5.10.2</version>
188+
<version>5.10.5</version>
189189
</dependency>
190190
<dependency>
191191
<groupId>org.junit.jupiter</groupId>
192192
<artifactId>junit-jupiter-engine</artifactId>
193-
<version>5.10.2</version>
193+
<version>5.10.5</version>
194194
</dependency>
195195
</dependencies>
196196

plugins/maven/example-server/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<annotationProcessorPath>
6060
<groupId>org.projectlombok</groupId>
6161
<artifactId>lombok</artifactId>
62-
<version>1.18.26</version>
62+
<version>1.18.36</version>
6363
</annotationProcessorPath>
6464
<annotationProcessorPath>
6565
<groupId>org.mapstruct</groupId>
@@ -114,7 +114,7 @@
114114
<dependency>
115115
<groupId>org.projectlombok</groupId>
116116
<artifactId>lombok</artifactId>
117-
<version>1.18.30</version>
117+
<version>1.18.36</version>
118118
</dependency>
119119
</dependencies>
120120

plugins/maven/graphql-java-codegen-maven-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,17 +116,17 @@
116116
<dependency>
117117
<groupId>org.freemarker</groupId>
118118
<artifactId>freemarker</artifactId>
119-
<version>2.3.32</version>
119+
<version>2.3.34</version>
120120
</dependency>
121121
<dependency>
122122
<groupId>com.graphql-java</groupId>
123123
<artifactId>graphql-java</artifactId>
124-
<version>20.2</version>
124+
<version>20.9</version>
125125
</dependency>
126126
<dependency>
127127
<groupId>com.fasterxml.jackson.core</groupId>
128128
<artifactId>jackson-databind</artifactId>
129-
<version>2.15.3</version>
129+
<version>2.15.4</version>
130130
</dependency>
131131
<dependency>
132132
<groupId>com.typesafe</groupId>

0 commit comments

Comments
 (0)