diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2022-03-01 14:16:37 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2022-03-01 14:16:37 +0100 |
commit | 3a42de6c88ef185ceaf107f31f42d3a2b3f036b6 (patch) | |
tree | 81af721367f6885e27069603090d5bf88af337ae | |
parent | e236b4d115d6cfc0e4c7bec7e5af1d6071d16b43 (diff) |
POM: Move Checker Framework dependencies to submodules.
Change-Id: If611d49269cce036f0c81f6b1e95bccbb53a8882
-rw-r--r-- | jgvariant-core/pom.xml | 14 | ||||
-rw-r--r-- | jgvariant-ostree/pom.xml | 14 | ||||
-rw-r--r-- | jgvariant-parent/pom.xml | 16 |
3 files changed, 28 insertions, 16 deletions
diff --git a/jgvariant-core/pom.xml b/jgvariant-core/pom.xml index 2ddf2c4..1cb5b20 100644 --- a/jgvariant-core/pom.xml +++ b/jgvariant-core/pom.xml @@ -47,6 +47,20 @@ SPDX-License-Identifier: LGPL-3.0-or-later <artifactId>apiguardian-api</artifactId> </dependency> + <!-- Static analysis --> + <dependency> + <groupId>org.checkerframework</groupId> + <artifactId>checker</artifactId> + <scope>provided</scope> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.checkerframework</groupId> + <artifactId>checker-qual</artifactId> + <scope>provided</scope> + <optional>true</optional> + </dependency> + <!-- Testing --> <dependency> <groupId>org.junit.jupiter</groupId> diff --git a/jgvariant-ostree/pom.xml b/jgvariant-ostree/pom.xml index d37bd5b..5968c5a 100644 --- a/jgvariant-ostree/pom.xml +++ b/jgvariant-ostree/pom.xml @@ -60,6 +60,20 @@ SPDX-License-Identifier: LGPL-3.0-or-later <artifactId>xz</artifactId> </dependency> + <!-- Static analysis --> + <dependency> + <groupId>org.checkerframework</groupId> + <artifactId>checker</artifactId> + <scope>provided</scope> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.checkerframework</groupId> + <artifactId>checker-qual</artifactId> + <scope>provided</scope> + <optional>true</optional> + </dependency> + <!-- Testing --> <dependency> <groupId>org.junit.jupiter</groupId> diff --git a/jgvariant-parent/pom.xml b/jgvariant-parent/pom.xml index 9c6f302..a0c4805 100644 --- a/jgvariant-parent/pom.xml +++ b/jgvariant-parent/pom.xml @@ -144,22 +144,6 @@ SPDX-License-Identifier: LGPL-3.0-or-later </dependencies> </dependencyManagement> - <dependencies> - <!-- Static analysis --> - <dependency> - <groupId>org.checkerframework</groupId> - <artifactId>checker</artifactId> - <scope>provided</scope> - <optional>true</optional> - </dependency> - <dependency> - <groupId>org.checkerframework</groupId> - <artifactId>checker-qual</artifactId> - <scope>provided</scope> - <optional>true</optional> - </dependency> - </dependencies> - <build> <pluginManagement> |