Skip to content

Commit 55b1fbb

Browse files
authored
Merge pull request #184 from saurabhpro/renovate/all
chore(deps): update renovate dependency scan
2 parents 16dc88a + bce5b47 commit 55b1fbb

File tree

17 files changed

+64
-38
lines changed

17 files changed

+64
-38
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.17.2</version>
22+
<version>2.18.0</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>commons-io</groupId>

JavaCon/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,30 @@
1818
<maven.compiler.release>22</maven.compiler.release>
1919

2020
<!-- testing -->
21-
<junit-jupiter.version>5.11.0</junit-jupiter.version>
21+
<junit-jupiter.version>5.11.2</junit-jupiter.version>
2222
<testng.version>7.10.2</testng.version>
2323
<hemcrest.version>3.0</hemcrest.version>
2424
<assertj.version>3.26.3</assertj.version>
2525
<avaitility.version>1.7.0</avaitility.version>
2626

2727
<!-- logging -->
28-
<logback.version>1.5.8</logback.version>
28+
<logback.version>1.5.11</logback.version>
2929
<slf4j-api.version>2.0.16</slf4j-api.version>
3030

3131
<lombok.version>1.18.34</lombok.version>
32-
<commons-io.version>2.16.1</commons-io.version>
32+
<commons-io.version>2.17.0</commons-io.version>
3333

3434
<!-- reactive -->
3535
<rxjava.version>3.1.9</rxjava.version>
36-
<projectreactor.version>2023.0.10</projectreactor.version>
36+
<projectreactor.version>2023.0.11</projectreactor.version>
3737
</properties>
3838

3939
<dependencies>
4040
<!-- https://mvnrepository.com/artifact/org.jetbrains/annotations -->
4141
<dependency>
4242
<groupId>org.jetbrains</groupId>
4343
<artifactId>annotations</artifactId>
44-
<version>24.1.0</version>
44+
<version>26.0.1</version>
4545
</dependency>
4646

4747
<dependency>

Playground/pom.xml

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

3030
<dependency>
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>org.junit.jupiter</groupId>
4848
<artifactId>junit-jupiter-engine</artifactId>
49-
<version>5.11.0</version>
49+
<version>5.11.2</version>
5050
<scope>compile</scope>
5151
</dependency>
5252

@@ -55,17 +55,17 @@
5555
<dependency>
5656
<groupId>org.apache.logging.log4j</groupId>
5757
<artifactId>log4j-api</artifactId>
58-
<version>2.24.0</version>
58+
<version>2.24.1</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.apache.logging.log4j</groupId>
6262
<artifactId>log4j-core</artifactId>
63-
<version>2.24.0</version>
63+
<version>2.24.1</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>org.apache.logging.log4j</groupId>
6767
<artifactId>log4j-slf4j-impl</artifactId>
68-
<version>2.24.0</version>
68+
<version>2.24.1</version>
6969
</dependency>
7070
</dependencies>
7171
<build>
@@ -86,7 +86,7 @@
8686
<plugin>
8787
<groupId>org.apache.maven.plugins</groupId>
8888
<artifactId>maven-surefire-plugin</artifactId>
89-
<version>3.5.0</version>
89+
<version>3.5.1</version>
9090
<configuration>
9191
<argLine>--enable-preview</argLine>
9292
</configuration>

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.11.0</version>
37+
<version>1.11.2</version>
3838
<scope>test</scope>
3939
</dependency>
4040

Testing/MutationPITesting/pom.xml

Lines changed: 1 addition & 1 deletion
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.16.3</version>
37+
<version>1.17.0</version>
3838
<!-- <configuration>-->
3939
<!-- <targetClasses>-->
4040
<!-- <param>com.saurabh.*</param>-->

Testing/TestContainers/pom.xml

Lines changed: 5 additions & 5 deletions
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.3.3</version>
11+
<version>3.3.4</version>
1212
<relativePath/> <!-- lookup parent from repository -->
1313
</parent>
1414

@@ -51,28 +51,28 @@
5151
<dependency>
5252
<groupId>org.testcontainers</groupId>
5353
<artifactId>testcontainers</artifactId>
54-
<version>1.20.1</version>
54+
<version>1.20.2</version>
5555
<scope>test</scope>
5656
</dependency>
5757

5858
<dependency>
5959
<groupId>org.testcontainers</groupId>
6060
<artifactId>junit-jupiter</artifactId>
61-
<version>1.20.1</version>
61+
<version>1.20.2</version>
6262
<scope>test</scope>
6363
</dependency>
6464

6565
<dependency>
6666
<groupId>org.testcontainers</groupId>
6767
<artifactId>mysql</artifactId>
68-
<version>1.20.1</version>
68+
<version>1.20.2</version>
6969
<scope>test</scope>
7070
</dependency>
7171

7272
<dependency>
7373
<groupId>org.testcontainers</groupId>
7474
<artifactId>rabbitmq</artifactId>
75-
<version>1.20.1</version>
75+
<version>1.20.2</version>
7676
<scope>test</scope>
7777
</dependency>
7878

Testing/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
<java.version>22</java.version>
1515
<junit.version.legacy>4.13.2</junit.version.legacy>
1616
<hemcrest.version>3.0</hemcrest.version>
17-
<mockito.version>5.13.0</mockito.version>
18-
<junit.version.intellij.supports>5.11.0</junit.version.intellij.supports>
17+
<mockito.version>5.14.2</mockito.version>
18+
<junit.version.intellij.supports>5.11.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.11.0'
14+
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.11.2'
1515

1616
// https://mvnrepository.com/artifact/org.quartz-scheduler/quartz
1717
implementation group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.2'

Tools/QuartzScheduler/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

Tools/aop-logging/.mvn/wrapper/maven-wrapper.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
wrapperVersion=3.3.1
17+
wrapperVersion=3.3.2
18+
distributionType=only-script
1819
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip

0 commit comments

Comments
 (0)