Skip to content

Commit

Permalink
[pom] Use one property for slf4j usage
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Apr 6, 2024
1 parent 4cfd179 commit baa6b8b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,18 @@ 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>true</slf4j.version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.36</version>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit baa6b8b

Please sign in to comment.