eclipse-jetty / eclipse-jetty-plugin

Eclipse Jetty Plugin
https://eclipse-jetty.github.io/
47 stars 29 forks source link

The jetty-ee8-bom is missing the dependencies from the jetty.ee8.osgi group #72

Open merks opened 1 year ago

merks commented 1 year ago

The jetty-ee10 bom https://repo1.maven.org/maven2/org/eclipse/jetty/ee10/jetty-ee10-bom/12.0.3/jetty-ee10-bom-12.0.3.pom includes these 3 things in the jetty.ee10.osgi group

<dependency>
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
<artifactId>jetty-ee10-osgi-alpn</artifactId>
<version>12.0.3</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
<artifactId>jetty-ee10-osgi-boot</artifactId>
<version>12.0.3</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.ee10.osgi</groupId>
<artifactId>jetty-ee10-osgi-boot-jsp</artifactId>
<version>12.0.3</version>
</dependency>

The jetty-ee9 bom https://repo1.maven.org/maven2/org/eclipse/jetty/ee9/jetty-ee9-bom/12.0.3/jetty-ee9-bom-12.0.3.pom includes these 2 things in the jetty.ee9.osgi group:

<dependency>
<groupId>org.eclipse.jetty.ee9.osgi</groupId>
<artifactId>jetty-ee9-osgi-boot</artifactId>
<version>12.0.3</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.ee9.osgi</groupId>
<artifactId>jetty-ee9-osgi-boot-jsp</artifactId>
<version>12.0.3</version>
</dependency>

But the jetty-ee8 bom https://repo1.maven.org/maven2/org/eclipse/jetty/ee8/jetty-ee8-bom/12.0.3/jetty-ee8-bom-12.0.3.pom is missing the contents of the jetty.ee8.osgi group available here:

https://repo1.maven.org/maven2/org/eclipse/jetty/ee8/osgi/

I.e., the new bundles introduced by the following are missing from the bom:

https://github.com/eclipse-birt/birt/issues/1447

merks commented 10 months ago

There have been two releases since this issue was opened but the problem persists:

https://repo1.maven.org/maven2/org/eclipse/jetty/ee8/jetty-ee8-bom/12.0.5/jetty-ee8-bom-12.0.5.pom

Where/how could I contribute a fix for this?