Skip to content

Commit a5b94b4

Browse files
authored
Merge pull request #193 from saurabhpro/renovate/all
fix(deps): update renovate dependency scan
2 parents af2efad + c347760 commit a5b94b4

File tree

12 files changed

+19
-20
lines changed

12 files changed

+19
-20
lines changed

JavaCon/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@
1919
<maven.compiler.proc>full</maven.compiler.proc> <!-- https://dzone.com/articles/using-lombok-library-witk-jdk-23 -->
2020

2121
<!-- testing -->
22-
<junit-jupiter.version>5.11.3</junit-jupiter.version>
22+
<junit-jupiter.version>5.11.4</junit-jupiter.version>
2323
<testng.version>7.10.2</testng.version>
2424
<hemcrest.version>3.0</hemcrest.version>
25-
<assertj.version>3.26.3</assertj.version>
25+
<assertj.version>3.27.2</assertj.version>
2626
<avaitility.version>1.7.0</avaitility.version>
2727

2828
<!-- logging -->
29-
<logback.version>1.5.13</logback.version>
29+
<logback.version>1.5.16</logback.version>
3030
<slf4j-api.version>2.0.16</slf4j-api.version>
3131

3232
<lombok.version>1.18.36</lombok.version>
3333
<commons-io.version>2.18.0</commons-io.version>
3434

3535
<!-- reactive -->
3636
<rxjava.version>3.1.10</rxjava.version>
37-
<projectreactor.version>2024.0.0</projectreactor.version>
37+
<projectreactor.version>2024.0.1</projectreactor.version>
3838
</properties>
3939

4040
<dependencies>

Playground/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>org.junit.jupiter</groupId>
4848
<artifactId>junit-jupiter-engine</artifactId>
49-
<version>5.11.3</version>
49+
<version>5.11.4</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.2</version>
58+
<version>2.24.3</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.apache.logging.log4j</groupId>
6262
<artifactId>log4j-core</artifactId>
63-
<version>2.24.2</version>
63+
<version>2.24.3</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>org.apache.logging.log4j</groupId>
6767
<artifactId>log4j-slf4j-impl</artifactId>
68-
<version>2.24.2</version>
68+
<version>2.24.3</version>
6969
</dependency>
7070
</dependencies>
7171
<build>

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.3</version>
37+
<version>1.11.4</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.17.2</version>
37+
<version>1.17.3</version>
3838
<!-- <configuration>-->
3939
<!-- <targetClasses>-->
4040
<!-- <param>com.saurabh.*</param>-->

Testing/PluralSight/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>org.springframework</groupId>
4646
<artifactId>spring-context</artifactId>
47-
<version>6.2.0</version>
47+
<version>6.2.1</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.4.0</version>
11+
<version>3.4.1</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>22</java.version>
1515
<junit.version.legacy>4.13.2</junit.version.legacy>
1616
<hemcrest.version>3.0</hemcrest.version>
17-
<mockito.version>5.14.2</mockito.version>
18-
<junit.version.intellij.supports>5.11.3</junit.version.intellij.supports>
17+
<mockito.version>5.15.2</mockito.version>
18+
<junit.version.intellij.supports>5.11.4</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.3'
14+
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.11.4'
1515

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

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.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

Tools/QuartzScheduler/gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

0 commit comments

Comments
 (0)