diff options
author | Jimmy Forsyth <jf2512@att.com> | 2019-12-13 09:51:57 -0500 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2019-12-13 09:52:00 -0500 |
commit | af2453db98cd8c66237103c96088d8c808ff016c (patch) | |
tree | 1f72a1ad7595de1c3df71bc9a473818a8d57cce9 | |
parent | 9bd9dd4f3aed166c00fb6e248a02d161921fcf71 (diff) |
Downgrade reflections to 0.9.10
reflections 0.9.11 is latest but incompatible with a previously
included version of guava
Issue-ID: AAI-2739
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Change-Id: I3d2696e1848ea41dafd9e9b1e8bc561a2fb5d83a
-rw-r--r-- | aai-parent/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/aai-parent/pom.xml b/aai-parent/pom.xml index 1fd169a6..c187d095 100644 --- a/aai-parent/pom.xml +++ b/aai-parent/pom.xml @@ -55,6 +55,7 @@ <commons.io.version>2.6</commons.io.version> <commons.lang.version>2.6</commons.lang.version> <commons.lang3.version>3.9</commons.lang3.version> + <commons.net.version>3.6</commons.net.version> <commons.text.version>1.8</commons.text.version> <docker.fabric.version>0.31.0</docker.fabric.version> <dmaap.client.version>1.1.9</dmaap.client.version> @@ -93,6 +94,7 @@ <opencsv.version>3.1</opencsv.version> <powermock.version>1.6.6</powermock.version> <plexus.utils.version>3.1.1</plexus.utils.version> + <reflections.version>0.9.10</reflections.version> <snakeyaml.version>1.25</snakeyaml.version> <spring.boot.version>1.5.22.RELEASE</spring.boot.version> <spring.web.version>4.3.25.RELEASE</spring.web.version> @@ -488,6 +490,12 @@ <artifactId>log4j</artifactId> <version>${log4j.version}</version> </dependency> + + <dependency> + <groupId>log4j</groupId> + <artifactId>apache-log4j-extras</artifactId> + <version>${log4j.version}</version> + </dependency> <dependency> <groupId>commons-io</groupId> @@ -605,6 +613,18 @@ <version>${commons.compress.version}</version> </dependency> + <dependency> + <groupId>org.reflections</groupId> + <artifactId>reflections</artifactId> + <version>${reflections.version}</version> + </dependency> + + <dependency> + <groupId>commons-net</groupId> + <artifactId>commons-net</artifactId> + <version>${commons.net.version}</version> + </dependency> + </dependencies> </dependencyManagement> |