ARTEMIS-4060: temporarily make commons-text an explicit dep of artemis-server for now so dependent projects get the updated dep version

This commit is contained in:
Robbie Gemmell 2022-10-26 14:14:44 +01:00
parent 0da14a303d
commit 92a87b0912
1 changed files with 19 additions and 0 deletions

View File

@ -161,6 +161,25 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-configuration2</artifactId>
<exclusions>
<exclusion>
<!-- Workaround for Maven handling of transitive deps
dependencyManagement when used by dependent projects.
Dep is re-declared below until a newer release of
commons-configuration2 upgrades to -text 1.10.0 -->
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<!-- Actually a transitive dep of commons-configuration2 above.
Workaround for Maven handling of transitive deps
dependencyManagement when used by dependent projects.
Declaring dep here until a newer release of
commons-configuration2 upgrades to -text 1.10.0 -->
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>