You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, I have configured mirrors in settings.xml (one for pydev, one for eclipse.org): without them, I still got the same result.
The CycloneDX is configured like this for my Tycho project (the goal is makeAggregateBom because it is inherited from an external global maven parent):
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-sbom</artifactId>
<version>${tycho-version}</version>
</dependency>
</dependencies>
</plugin>
<!-- does not seem to be real maven plugin -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-sbom</artifactId>
<version>${tycho-version}</version>
<configuration>
<includes>
<include>eclipse-plugin</include>
<include>eclipse-feature</include>
<include>eclipse-repository</include>
</includes>
</configuration>
</plugin>
I understood from this discussion that the warning was due to how CycloneDX requires the artifact URLs but I don't understand why Tycho is unable to resolve those URL especially when it could find them?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello,
I am trying to integrate SBOM into my project however Tycho fails to resolve artifacts P2 repository:
I configured
tycho.sbom.urlto point to where my plugins will be uploaded.The other plugin, in the list above, all comes from P2 repositories attached to the build:
However, I have configured mirrors in settings.xml (one for pydev, one for eclipse.org): without them, I still got the same result.
The CycloneDX is configured like this for my Tycho project (the goal is
makeAggregateBombecause it is inherited from an external global maven parent):I understood from this discussion that the warning was due to how CycloneDX requires the artifact URLs but I don't understand why Tycho is unable to resolve those URL especially when it could find them?
Did I miss something ?
All reactions