Skip to content

Commit

Permalink
Add missing log4j dependency for BAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
seppinho committed May 17, 2024
1 parent 7ae6ece commit 5ee1344
Showing 1 changed file with 28 additions and 20 deletions.
48 changes: 28 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@
<name>imed-genepi-maven</name>
<url>https://genepi.i-med.ac.at/maven</url>
</repository>


</repositories>

</repositories>


<build>
Expand Down Expand Up @@ -84,9 +83,11 @@
<include>commons-cli:commons-cli:*:*</include>
<include>log4j:log4j:*:*</include>
<include>au.com.bytecode:opencsv:*:*</include>
<include>org.apache.commons:commons-math3:*:*</include>
<include>
org.apache.commons:commons-math3:*:*</include>
<include>commons-lang:commons-lang:*:*</include>
<include>com.github.lukfor:magic-progress:*:*</include>
<include>
com.github.lukfor:magic-progress:*:*</include>
<include>com.github.lukfor:magic-tables:*:*</include>
<include>commons-io:commons-io:*:*</include>
<include>info.picocli:picocli:*:*</include>
Expand Down Expand Up @@ -127,11 +128,11 @@
</build>

<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>


Expand Down Expand Up @@ -191,6 +192,13 @@
<type>pom</type>
</dependency>

<!-- https://mvnrepository.com/artifact/log4j/log4j -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>


<!-- https://mvnrepository.com/artifact/au.com.bytecode/opencsv -->
<dependency>
Expand All @@ -217,7 +225,7 @@
<groupId>com.github.lukfor</groupId>
<artifactId>magic-reports</artifactId>
<version>0.0.1</version>
</dependency>
</dependency>

<dependency>
<groupId>info.picocli</groupId>
Expand All @@ -230,32 +238,32 @@
<artifactId>cloudgene-java-sdk</artifactId>
<version>1.0.2</version>
</dependency>

<dependency>
<groupId>com.github.lukfor</groupId>
<artifactId>magic-progress</artifactId>
<version>0.3.2</version>
</dependency>


<dependency>
<groupId>com.github.lukfor</groupId>
<artifactId>magic-reports</artifactId>
<version>0.0.1</version>
</dependency>

<dependency>
<groupId>com.github.lukfor</groupId>
<artifactId>magic-tables</artifactId>
<version>0.3.1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/io.marioslab.basis/template -->
<dependency>
<groupId>io.marioslab.basis</groupId>
<artifactId>template</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>io.marioslab.basis</groupId>
<artifactId>template</artifactId>
<version>1.7</version>
</dependency>


</dependencies>
Expand Down

0 comments on commit 5ee1344

Please sign in to comment.