Skip to content

Commit

Permalink
Use slf4j bom (#190)
Browse files Browse the repository at this point in the history
* Use slf4j-bom in dependencyManagement
* Use version property naming convention from parent pom
  • Loading branch information
ctubbsii authored Jul 15, 2024
1 parent 139a8c2 commit f12af71
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,27 @@ SPDX-License-Identifier: EPL-2.0
<maven.compiler.release>11</maven.compiler.release>
<!-- rat plugin is no good at validating EPL headers out of the box -->
<rat.skip>true</rat.skip>
<slf4j.version>2.0.13</slf4j.version>
<version.slf4j>2.0.13</version.slf4j>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-bom</artifactId>
<version>${version.slf4j}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit f12af71

Please sign in to comment.