Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update slf4j to v2 to fix breaking change sqlite 3.43.2
Browse files Browse the repository at this point in the history
javiertuya committed Oct 14, 2023

Verified

This commit was signed with the committer’s verified signature.
penelopeysm Penelope Yong
1 parent 717474b commit 2705761
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -6,8 +6,6 @@ updates:
- dependency-name: "com.microsoft.sqlserver*"
- dependency-name: "com.oracle.database.jdbc*"
update-types: ["version-update:semver-major"]
- dependency-name: "org.slf4j*"
update-types: ["version-update:semver-major"]
schedule:
interval: daily
open-pull-requests-limit: 20
4 changes: 2 additions & 2 deletions it/build.xml
Original file line number Diff line number Diff line change
@@ -106,7 +106,7 @@
<delete dir="qacover-uber-main/target" />
<mkdir dir="qacover-uber-main/target/lib" />
<get src="https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.36.0.3/sqlite-jdbc-3.36.0.3.jar" dest="qacover-uber-main/target/lib/sqlite-jdbc.jar"/>
<get src="https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.17.2/log4j-slf4j-impl-2.17.2.jar" dest="qacover-uber-main/target/lib/log4j-slf4j-impl.jar"/>
<get src="https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-slf4j2-impl/2.17.2/log4j-slf4j2-impl-2.17.2.jar" dest="qacover-uber-main/target/lib/log4j-slf4j2-impl.jar"/>
<get src="https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar" dest="qacover-uber-main/target/lib/log4j-core.jar"/>
<get src="https://repo1.maven.org/maven2/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar" dest="qacover-uber-main/target/lib/log4j-api.jar"/>
<get src="https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar" dest="qacover-uber-main/target/lib/slf4j-api.jar"/>
@@ -117,7 +117,7 @@
<pathelement path="qacover-uber-main/target"/>
<pathelement location="../qacover-core/target/qacover-core-${project.version}-uber.jar"/>
<pathelement location="qacover-uber-main/target/lib/slf4j-api.jar"/>
<pathelement location="qacover-uber-main/target/lib/log4j-slf4j-impl.jar"/>
<pathelement location="qacover-uber-main/target/lib/log4j-slf4j2-impl.jar"/>
<pathelement location="qacover-uber-main/target/lib/log4j-core.jar"/>
<pathelement location="qacover-uber-main/target/lib/log4j-api.jar"/>
<pathelement location="qacover-uber-main/target/lib/sqlite-jdbc.jar"/>
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -80,11 +80,11 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version> <!--$NO-MVN-MAN-VER$-->
<version>2.0.9</version> <!--$NO-MVN-MAN-VER$-->
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>2.20.0</version>
<scope>test</scope>
</dependency>
2 changes: 1 addition & 1 deletion qacover-core/pom.xml
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<artifactId>log4j-slf4j2-impl</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
2 changes: 1 addition & 1 deletion qacover-model/pom.xml
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<artifactId>log4j-slf4j2-impl</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>

0 comments on commit 2705761

Please sign in to comment.