Skip to content

Commit d1ef6fa

Browse files
chore(deps): update renovate dependency scan
1 parent 1a201fc commit d1ef6fa

File tree

16 files changed

+61
-29
lines changed

16 files changed

+61
-29
lines changed

JavaCon/JsonIO/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>com.fasterxml.jackson.core</groupId>
2121
<artifactId>jackson-databind</artifactId>
22-
<version>2.14.1</version>
22+
<version>2.14.2</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>commons-io</groupId>

JavaCon/SpecialKeywords/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>org.openjfx</groupId>
2121
<artifactId>javafx-controls</artifactId>
22-
<version>19</version>
22+
<version>19.0.2.1</version>
2323
</dependency>
2424

2525
</dependencies>

JavaCon/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,27 @@
1919
<maven.compiler.source>19</maven.compiler.source>
2020

2121
<!-- testing -->
22-
<junit-jupiter.version>5.9.1</junit-jupiter.version>
23-
<testng.version>7.7.0</testng.version>
22+
<junit-jupiter.version>5.9.2</junit-jupiter.version>
23+
<testng.version>7.7.1</testng.version>
2424
<hemcrest.version>2.2</hemcrest.version>
25-
<assertj.version>3.23.1</assertj.version>
25+
<assertj.version>3.24.2</assertj.version>
2626
<avaitility.version>1.7.0</avaitility.version>
2727

2828
<!-- logging -->
2929
<logback.version>1.4.5</logback.version>
30-
<slf4j-api.version>2.0.5</slf4j-api.version>
30+
<slf4j-api.version>2.0.6</slf4j-api.version>
3131

32-
<lombok.version>1.18.24</lombok.version>
32+
<lombok.version>1.18.26</lombok.version>
3333
<commons-io.version>2.11.0</commons-io.version>
34-
<rxjava.version>3.1.5</rxjava.version>
34+
<rxjava.version>3.1.6</rxjava.version>
3535
</properties>
3636

3737
<dependencies>
3838
<!-- https://mvnrepository.com/artifact/org.jetbrains/annotations -->
3939
<dependency>
4040
<groupId>org.jetbrains</groupId>
4141
<artifactId>annotations</artifactId>
42-
<version>23.1.0</version>
42+
<version>24.0.0</version>
4343
</dependency>
4444

4545
<dependency>

Playground/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@
1919
<dependency>
2020
<groupId>com.fasterxml.jackson.dataformat</groupId>
2121
<artifactId>jackson-dataformat-yaml</artifactId>
22-
<version>2.14.1</version>
22+
<version>2.14.2</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>com.fasterxml.jackson.core</groupId>
2626
<artifactId>jackson-databind</artifactId>
27-
<version>2.14.1</version>
27+
<version>2.14.2</version>
2828
</dependency>
2929

3030
<dependency>
3131
<groupId>org.immutables</groupId>
3232
<artifactId>value</artifactId>
33-
<version>2.9.2</version>
33+
<version>2.9.3</version>
3434
<scope>provided</scope>
3535
</dependency>
3636
<dependency>
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>org.junit.jupiter</groupId>
4848
<artifactId>junit-jupiter-engine</artifactId>
49-
<version>5.9.1</version>
49+
<version>5.9.2</version>
5050
<scope>compile</scope>
5151
</dependency>
5252

Testing/JunitBasics/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>org.junit.platform</groupId>
3636
<artifactId>junit-platform-runner</artifactId>
37-
<version>1.9.1</version>
37+
<version>1.9.2</version>
3838
<scope>test</scope>
3939
</dependency>
4040

Testing/MutationPITesting/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<plugin>
3535
<groupId>org.pitest</groupId>
3636
<artifactId>pitest-maven</artifactId>
37-
<version>1.10.3</version>
37+
<version>1.11.0</version>
3838
<!-- <configuration>-->
3939
<!-- <targetClasses>-->
4040
<!-- <param>com.saurabh.*</param>-->
@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>org.pitest</groupId>
6060
<artifactId>pitest-junit5-plugin</artifactId>
61-
<version>1.1.0</version>
61+
<version>1.1.2</version>
6262
</dependency>
6363
</dependencies>
6464
<configuration>

Testing/PluralSight/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
<dependency>
4040
<groupId>org.springframework</groupId>
4141
<artifactId>spring-beans</artifactId>
42-
<version>6.0.2</version>
42+
<version>6.0.4</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>org.springframework</groupId>
4646
<artifactId>spring-context</artifactId>
47-
<version>6.0.2</version>
47+
<version>6.0.4</version>
4848
</dependency>
4949
</dependencies>
5050

Testing/TestContainers/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.springframework.boot</groupId>
1010
<artifactId>spring-boot-starter-parent</artifactId>
11-
<version>3.0.0</version>
11+
<version>3.0.2</version>
1212
<relativePath/> <!-- lookup parent from repository -->
1313
</parent>
1414

Testing/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
<java.version>17</java.version>
1515
<junit.version.legacy>4.13.2</junit.version.legacy>
1616
<hemcrest.version>2.2</hemcrest.version>
17-
<mockito.version>4.9.0</mockito.version>
18-
<junit.version.intellij.supports>5.9.1</junit.version.intellij.supports>
17+
<mockito.version>5.1.1</mockito.version>
18+
<junit.version.intellij.supports>5.9.2</junit.version.intellij.supports>
1919
</properties>
2020

2121
<dependencies>

Tools/QuartzScheduler/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111

1212
dependencies {
1313
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
14-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.1'
14+
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.2'
1515

1616
// https://mvnrepository.com/artifact/org.quartz-scheduler/quartz
1717
implementation group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.2'
Binary file not shown.
Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip
2-
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.7/apache-maven-3.8.7-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar

Tools/aop-logging/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.0</version>
8+
<version>3.0.2</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.saurabh</groupId>
Binary file not shown.
Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip
2-
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.7/apache-maven-3.8.7-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar

Tools/moustache-demo/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.0</version>
8+
<version>3.0.2</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111

@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>org.projectlombok</groupId>
4343
<artifactId>lombok</artifactId>
44-
<version>1.18.24</version>
44+
<version>1.18.26</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.github.spullara.mustache.java</groupId>

0 commit comments

Comments
 (0)