SAP-archive / cloud-bulletinboard-ads

This is the bulletinboard-ads sample application code used in the openSAP course: Cloud-Native Development with SAP Business Technology Platform (formerly SAP Cloud Platform).
Apache License 2.0
76 stars 99 forks source link

mvn clean verify ends in build failure / findbugs #26

Open hardik92 opened 3 years ago

hardik92 commented 3 years ago

Issue occurs in Exercise 6 Step 3. When we perform 'mvn clean verify', it ends up in Build Failure with error as follows:

Unable to parse configuration of mojo org.codehaus.mojo:findbugs-maven-plugin:3.0.2:findbugs for parameter pluginArtifacts: Cannot assign configuration entry 'pluginArtifacts' with value '${plugin.artifacts}' of type java.util.Collections.UnmodifiableRandomAccessList to property of type java.util.ArrayList -> [Help 1]

Solution: update version in pom.xml for plugin articatId 'org.codehaus.mojo' to 3.0.4 and it gets resolved.

Reference: https://stackoverflow.com/questions/53676071/maven-clean-command-java-util-collections-unmodifiablerandomaccesslist-to-prope/55834783