Closed
Description
(I would create a PR, but it seems most of this project is generated from elsewhere. Additionally the pom.xml
s are not SNAPSHOT
versions (as of this writing the master
branch root pom.xml
says that it is for <version>2.22.0</version>
, so strictly speaking it would be wrong to patch the pom.xml
of such an extant version. So I'll just describe the issue here instead. It's pretty simple.)
Currently, in bmc-common/pom.xml
there is:
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>2.4.7</version>
</dependency>
It is not actually used anywhere in bmc-common
. It is used in bmc-encryption
. I suggest as a starting point removing this XML from bmc-common/pom.xml
and placing it in bmc-encryption/pom.xml
instead. A full build with Java 8 works with this change.