Skip to content

Commit

Permalink
closes #509
Browse files Browse the repository at this point in the history
  • Loading branch information
jstaerk committed Oct 9, 2024
1 parent fa6a8da commit 77cb46a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@

- #509 CLI currently does not write a logfile

2.14.1
=======
2024-10-06
Expand Down
19 changes: 19 additions & 0 deletions Mustang-CLI/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,30 @@
<version>1.8.0</version>
</dependency>


<!-- logging -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.10</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.2.10</version>
</dependency>
<dependency>
<!-- This library is needed so that logback stderr output is sent to, well, stderr, otherwise it lands in stdout -->
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
<version>3.1.7</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.12</version>
</dependency>
<!-- end of logging -->

<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down

0 comments on commit 77cb46a

Please sign in to comment.