Skip to content

Commit

Permalink
Removed redundant dependency declaration from the parent pom.xml file…
Browse files Browse the repository at this point in the history
…, added "runtime" scope, and moved logback dependency to more appropriate location.

Signed-off-by: David Leangen <osgi@leangen.net>
  • Loading branch information
David Leangen committed Jan 30, 2024
1 parent b5c6c79 commit 5bdd95b
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -320,11 +320,6 @@
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
Expand Down Expand Up @@ -418,12 +413,6 @@
<version>2.1.3</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.http.servlet-api</artifactId>
Expand All @@ -442,6 +431,12 @@
<version>${jjwt.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>runtime</scope>
</dependency>

<!-- Test -->
<dependency>
Expand Down

0 comments on commit 5bdd95b

Please sign in to comment.