Skip to content

Commit

Permalink
Add direct dependency on checker-qual
Browse files Browse the repository at this point in the history
Closes #194
  • Loading branch information
sleberknight committed Mar 7, 2023
1 parent 939023b commit 124a2cc
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<!-- Versions for required/provided dependencies -->

<camel.version>3.20.2</camel.version>
<checker-qual.version>3.32.0</checker-qual.version>
<jakarta.xml.soap-api.version>1.4.2</jakarta.xml.soap-api.version>
<jakarta.xml.ws-api.version>2.3.3</jakarta.xml.ws-api.version>
<kiwi.version>2.4.0</kiwi.version>
Expand All @@ -59,6 +60,12 @@
<dependencyManagement>
<dependencies>

<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
<version>${checker-qual.version}</version>
</dependency>

<!--
NOTE:
Override the Kotlin version defined in kiwi-bom; this MUST come before kiwi-bom
Expand Down Expand Up @@ -106,6 +113,11 @@
<version>${kiwi.version}</version>
</dependency>

<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down Expand Up @@ -356,4 +368,4 @@
</plugins>
</build>

</project>
</project>

0 comments on commit 124a2cc

Please sign in to comment.