Skip to content

Commit bbf04c4

Browse files
committed
archetypes: add runtime dependency to an slf4j implementation
1 parent c8bc647 commit bbf04c4

3 files changed

Lines changed: 21 additions & 0 deletions

File tree

  • archetypes
    • complete/src/main/resources/archetype-resources
    • core/src/main/resources/archetype-resources
    • typical/src/main/resources/archetype-resources

archetypes/complete/src/main/resources/archetype-resources/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ limitations under the License.
5353
<artifactId>learnlib-distribution</artifactId>
5454
<type>pom</type>
5555
</dependency>
56+
57+
<!-- provide an SLF4J implementation -->
58+
<dependency>
59+
<groupId>ch.qos.logback</groupId>
60+
<artifactId>logback-classic</artifactId>
61+
<scope>runtime</scope>
62+
</dependency>
5663
</dependencies>
5764

5865
</project>

archetypes/core/src/main/resources/archetype-resources/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,13 @@ limitations under the License.
5252
<groupId>de.learnlib</groupId>
5353
<artifactId>learnlib-api</artifactId>
5454
</dependency>
55+
56+
<!-- provide an SLF4J implementation -->
57+
<dependency>
58+
<groupId>ch.qos.logback</groupId>
59+
<artifactId>logback-classic</artifactId>
60+
<scope>runtime</scope>
61+
</dependency>
5562
</dependencies>
5663
</project>
5764

archetypes/typical/src/main/resources/archetype-resources/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,13 @@ limitations under the License.
7777
<groupId>net.automatalib</groupId>
7878
<artifactId>automata-commons-dotutil</artifactId>
7979
</dependency>
80+
81+
<!-- provide an SLF4J implementation -->
82+
<dependency>
83+
<groupId>ch.qos.logback</groupId>
84+
<artifactId>logback-classic</artifactId>
85+
<scope>runtime</scope>
86+
</dependency>
8087
</dependencies>
8188

8289
</project>

0 commit comments

Comments
 (0)