Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up JDK 23
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: 23
distribution: 'temurin'
Expand Down
2 changes: 1 addition & 1 deletion JavaCon/JDBC/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc10</artifactId>
<version>19.27.0.0</version>
<version>19.29.0.0</version>
</dependency>

</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion JavaCon/JavaKathy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>io.reactivex.rxjava3</groupId>
<artifactId>rxjava</artifactId>
<version>3.1.10</version>
<version>3.1.12</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion JavaCon/JsonIO/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.19.0</version>
<version>2.20.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down
2 changes: 1 addition & 1 deletion JavaCon/SpecialKeywords/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>25-ea+17</version>
<version>26-ea+15</version>
</dependency>

</dependencies>
Expand Down
18 changes: 9 additions & 9 deletions JavaCon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,30 +19,30 @@
<maven.compiler.proc>full</maven.compiler.proc> <!-- https://dzone.com/articles/using-lombok-library-witk-jdk-23 -->

<!-- testing -->
<junit-jupiter.version>5.12.2</junit-jupiter.version>
<junit-jupiter.version>6.0.1</junit-jupiter.version>
<testng.version>7.11.0</testng.version>
<hemcrest.version>3.0</hemcrest.version>
<assertj.version>3.27.3</assertj.version>
<assertj.version>3.27.6</assertj.version>
<avaitility.version>1.7.0</avaitility.version>

<!-- logging -->
<logback.version>1.5.18</logback.version>
<logback.version>1.5.19</logback.version>
<slf4j-api.version>2.0.17</slf4j-api.version>

<lombok.version>1.18.38</lombok.version>
<commons-io.version>2.19.0</commons-io.version>
<lombok.version>1.18.42</lombok.version>
<commons-io.version>2.21.0</commons-io.version>

<!-- reactive -->
<rxjava.version>3.1.10</rxjava.version>
<projectreactor.version>2024.0.6</projectreactor.version>
<rxjava.version>3.1.12</rxjava.version>
<projectreactor.version>2025.0.0</projectreactor.version>
</properties>

<dependencies>
<!-- https://mvnrepository.com/artifact/org.jetbrains/annotations -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.0.2</version>
<version>26.0.2-1</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -98,7 +98,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<version>3.14.1</version>
<configuration>
<release>${maven.compiler.release}</release>
<encoding>${project.build.sourceEncoding}</encoding>
Expand Down
20 changes: 10 additions & 10 deletions Playground/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,24 @@
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.19.0</version>
<version>2.20.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.19.0</version>
<version>2.20.1</version>
</dependency>

<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>2.10.1</version>
<version>2.11.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.4</version>
<version>2.5</version>
</dependency>
<dependency>
<groupId>com.esotericsoftware.yamlbeans</groupId>
Expand All @@ -46,7 +46,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.12.2</version>
<version>6.0.1</version>
<scope>compile</scope>
</dependency>

Expand All @@ -55,25 +55,25 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.24.3</version>
<version>2.25.2</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.24.3</version>
<version>2.25.2</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.24.3</version>
<version>2.25.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<version>3.14.1</version>
<configuration>
<source>11</source>
<target>11</target>
Expand All @@ -86,7 +86,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.3</version>
<version>3.5.4</version>
<configuration>
<argLine>--enable-preview</argLine>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion Testing/JunitBasics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<version>1.12.2</version>
<version>1.14.1</version>
<scope>test</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions Testing/MutationPITesting/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.19.3</version>
<version>1.21.1</version>
<!-- <configuration>-->
<!-- <targetClasses>-->
<!-- <param>com.saurabh.*</param>-->
Expand All @@ -58,7 +58,7 @@
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</dependency>
</dependencies>
<configuration>
Expand Down
6 changes: 3 additions & 3 deletions Testing/PluralSight/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>5.11</version>
<version>5.12.0</version>
</dependency>

<dependency>
Expand All @@ -39,12 +39,12 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>6.2.7</version>
<version>6.2.12</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>6.2.7</version>
<version>6.2.12</version>
</dependency>
</dependencies>

Expand Down
12 changes: 6 additions & 6 deletions Testing/TestContainers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.5</version>
<version>3.5.7</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand All @@ -35,7 +35,7 @@
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>9.3.0</version>
<version>9.5.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -51,28 +51,28 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.21.0</version>
<version>2.0.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.21.0</version>
<version>1.21.3</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mysql</artifactId>
<version>1.21.0</version>
<version>1.21.3</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>rabbitmq</artifactId>
<version>1.21.0</version>
<version>1.21.3</version>
<scope>test</scope>
</dependency>

Expand Down
6 changes: 3 additions & 3 deletions Testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<java.version>22</java.version>
<junit.version.legacy>4.13.2</junit.version.legacy>
<hemcrest.version>3.0</hemcrest.version>
<mockito.version>5.17.0</mockito.version>
<junit.version.intellij.supports>5.12.2</junit.version.intellij.supports>
<mockito.version>5.20.0</mockito.version>
<junit.version.intellij.supports>6.0.1</junit.version.intellij.supports>
</properties>

<dependencies>
Expand All @@ -31,7 +31,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<version>3.14.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
Expand Down
4 changes: 2 additions & 2 deletions Tools/QuartzScheduler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repositories {

dependencies {
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.12.2'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '6.0.1'

// https://mvnrepository.com/artifact/org.quartz-scheduler/quartz
implementation group: 'org.quartz-scheduler', name: 'quartz', version: '2.5.0'
implementation group: 'org.quartz-scheduler', name: 'quartz', version: '2.5.1'
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
20 changes: 2 additions & 18 deletions Tools/aop-logging/.mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,19 +1,3 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
wrapperVersion=3.3.2
wrapperVersion=3.3.4
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip
Loading
Loading