Skip to content

Commit

Permalink
fix(broker): add missing dependency commons-lang
Browse files Browse the repository at this point in the history
In the codebase both `commons-lang:commons-lang` and
`org.apache.commons:commons-lang3` are used, but the first were missing
from the dependency.
  • Loading branch information
MDeLuise committed Nov 15, 2023
1 parent c718451 commit 6bcd1f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions assembly/broker/descriptors/kapua-broker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@
<include>commons-collections:commons-collections</include>
<include>commons-configuration:commons-configuration</include>
<include>commons-io:commons-io</include>
<include>commons-lang:commons-lang</include>

<include>io.dropwizard.metrics:metrics-core</include>
<include>io.netty:netty</include>
Expand Down
5 changes: 5 additions & 0 deletions assembly/broker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,11 @@
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand Down

0 comments on commit 6bcd1f6

Please sign in to comment.