Fix bmp-mock executable 45/110845/1
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 18 Mar 2024 13:08:16 +0000 (14:08 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 18 Mar 2024 13:08:16 +0000 (14:08 +0100)
Shading is failing to include slf4j-api, leading to a startup exception.
Fix that.

Change-Id: Icefb92ef03a7bfe5ca45a31ea9a9d5998e12ba97
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
bmp/bmp-mock/pom.xml

index 658e6ee46613addf21ba53a5b8296b8c7d6b37c8..280e009dd54a550a081258c88deccaefd5674300 100644 (file)
@@ -81,7 +81,6 @@
         <dependency>
             <groupId>net.sourceforge.argparse4j</groupId>
             <artifactId>argparse4j</artifactId>
-            <version>0.9.0</version>
         </dependency>
         <dependency>
             <groupId>org.eclipse.jdt</groupId>
             <groupId>${project.groupId}</groupId>
             <artifactId>testtool-util</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>compile</scope>
+        </dependency>
     </dependencies>
     <build>
         <plugins>