Expand my Community achievements bar.

SOLVED

Failed to execute goal biz.aQute.bnd:bnd-maven-plugin:5.0.0:bnd-process (bnd-process) on project aemgeeks.core: bnd error: null: ConcurrentModificationException -> [Help 1] [ERROR]

Avatar

Level 3

repo: https://github.com/vineetham123/aemgeeks

branch : master

Could you please check why this error was thrown and help me resolve it?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @vineetham123  Add below plugin in core pom.xml and it will work. I validated in my local and its working fine 

 

Jagadeesh_Prakash_0-1704715349208.png

 

 

<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-baseline-maven-plugin</artifactId>
<configuration>
<failOnMissing>false</failOnMissing>
</configuration>
<executions>
<execution>
<id>baseline</id>
<goals>
<goal>baseline</goal>
</goals>
</execution>
</executions>
</plugin>

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Hi @vineetham123  Add below plugin in core pom.xml and it will work. I validated in my local and its working fine 

 

Jagadeesh_Prakash_0-1704715349208.png

 

 

<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-baseline-maven-plugin</artifactId>
<configuration>
<failOnMissing>false</failOnMissing>
</configuration>
<executions>
<execution>
<id>baseline</id>
<goals>
<goal>baseline</goal>
</goals>
</execution>
</executions>
</plugin>