Skip to content

Commit

Permalink
fix: Fixed the logging dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdutz committed Sep 22, 2023
1 parent 35c6bb6 commit 45adf96
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions plc4j/examples/hello-opm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<!-- Overriding the default of "test" -->
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
Expand All @@ -68,7 +70,7 @@
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<usedDependencies combine.children="append">
<usedDependency>org.slf4j:log4j-over-slf4j</usedDependency>
<usedDependency>ch.qos.logback:logback-core</usedDependency>
</usedDependencies>
</configuration>
</plugin>
Expand Down

0 comments on commit 45adf96

Please sign in to comment.