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 logback to 1.3.13 #105

Merged
merged 12 commits into from
Dec 5, 2023
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'
apply plugin: 'maven-publish'

group = "ome"
version = "6.12.0-SNAPSHOT"
version = "7.1.0-SNAPSHOT"

repositories {
mavenCentral()
Expand All @@ -16,8 +16,8 @@ repositories {
}

dependencies {
implementation group: 'ome', name: 'formats-gpl', version: '6.11.1'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.11'
implementation group: 'ome', name: 'formats-gpl', version: '7.0.1'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.3.11'
}

task sourcesJar(type: Jar, dependsOn: classes) {
Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<properties>
<formats-gpl.version>7.0.1</formats-gpl.version>
<logback.version>1.2.11</logback.version>
<logback.version>1.3.11</logback.version>

<!-- NB: Avoid platform encoding warning when copying resources. -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -38,6 +38,11 @@
</properties>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>formats-gpl</artifactId>
Expand Down
Loading