-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Minor
-
Component/s: pipeline-maven-plugin
When a SNAPSHOT artifact is built with packaging = 'bundle' (using maven-bundle-plugin), downstream pipelines that consume the artifact as a jar dependency are not triggered.
Artifact A:
<groupId>my.org</groupId> <artifactId>event-api</artifactId> <packaging>bundle</packaging> Â
Artifact B:
<dependency>
<groupId>my.org</groupId>
  <artifactId>event-api</artifactId>
</dependency>