eclipse-jetty-plugin
eclipse-jetty-plugin copied to clipboard
The jetty-ee8-bom is missing the dependencies from the jetty.ee8.osgi group
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