Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ch.qos.logback:logback-core from 1.4.14 to 1.5.6 #148

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ch.zizka.csvcruncher</groupId>
<artifactId>csv-cruncher</artifactId>
<version>2.7.2-SNAPSHOT</version>
<version>2.7.1-SNAPSHOT</version>

<name>CsvCruncher</name>
<description>Treats CSV or JSON files as SQL tables, and exports SQL SELECTs back to CSV or JSON.</description>
Expand All @@ -27,7 +27,7 @@

<jvm.args.debug /> <!-- Used by the -Pdebug profile. -->
<mainClass>Crunch</mainClass>
<testRunCmd>${jvm.args.debug} -jar ${project.build.directory}/${project.build.finalName}-jar-with-dependencies.jar</testRunCmd>
<testRunCmd>${jvm.args.debug} -jar ${project.build.directory}/${project.build.finalName}-single.jar</testRunCmd>
<skipE2E>false</skipE2E>
<ossrh.host>oss.sonatype.org</ossrh.host>
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
Expand Down Expand Up @@ -101,7 +101,7 @@
mvn install assembly:assembly
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId><artifactId>maven-assembly-plugin</artifactId><version>3.6.0</version>
<groupId>org.apache.maven.plugins</groupId><artifactId>maven-assembly-plugin</artifactId><version>3.4.2</version>
<executions>
<execution>
<id>single</id> <!-- Was before MJAR-233: assembleDistJar -->
Expand Down Expand Up @@ -150,7 +150,7 @@
</execution>
</executions>
<configuration>
<appendAssemblyId>true</appendAssemblyId>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</plugin>

Expand Down Expand Up @@ -187,7 +187,6 @@
<executions>
<execution><id>clean-hsqldb-data</id><phase>pre-integration-test</phase><goals><goal>clean</goal></goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets> <fileset> <directory>hsqldb/</directory> <useDefaultExcludes>false</useDefaultExcludes> </fileset> </filesets>
</configuration>
</execution>
Expand Down Expand Up @@ -291,7 +290,7 @@
<!-- Logging -->
<dependency><groupId>org.slf4j</groupId><artifactId>slf4j-api</artifactId><version>2.0.9</version></dependency>
<dependency><groupId>ch.qos.logback</groupId><artifactId>logback-classic</artifactId><version>1.4.14</version></dependency>
<dependency><groupId>ch.qos.logback</groupId><artifactId>logback-core</artifactId><version>1.4.14</version></dependency>
<dependency><groupId>ch.qos.logback</groupId><artifactId>logback-core</artifactId><version>1.5.6</version></dependency>

<!-- Test deps -->
<dependency><groupId>org.junit.jupiter</groupId><artifactId>junit-jupiter</artifactId><version>5.10.1</version><scope>test</scope></dependency>
Expand Down
Loading