Skip to content

Commit

Permalink
build(deps): add apache commons
Browse files Browse the repository at this point in the history
The QA tests use apache commons for some convenience. Before we got this as a transitive dependency. Since we use it we should explicitly declare it in the pom.
  • Loading branch information
remcowesterhoud committed Mar 3, 2022
1 parent b29b392 commit 2745f92
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<properties>
<dependency.assertj.version>3.22.0</dependency.assertj.version>
<dependency.awaitility.version>4.1.1</dependency.awaitility.version>
<dependency.commons.version>3.12.0</dependency.commons.version>
<dependency.errorprone.version>2.11.0</dependency.errorprone.version>
<dependency.eze.version>0.6.0</dependency.eze.version>
<dependency.feel.version>1.14.2</dependency.feel.version>
Expand Down Expand Up @@ -308,6 +309,12 @@
<version>${dependency.awaitility.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${dependency.commons.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 2745f92

Please sign in to comment.