Skip to content

Commit

Permalink
Merge pull request #105 from sbesson/slf4api_2
Browse files Browse the repository at this point in the history
Bump logback to 1.3.13
  • Loading branch information
dgault authored Dec 5, 2023
2 parents f1c7758 + 8be00ae commit 3959a0d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
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.13'
}

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.13</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

0 comments on commit 3959a0d

Please sign in to comment.