Bug 655808
| Summary: | jetty installs pom files with incorrect filename | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Stanislav Ochotnicky <sochotni> |
| Component: | jetty | Assignee: | Jeff Johnston <jjohnstn> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | rawhide | CC: | akurtako, java-sig-commits, jjohnstn, overholt |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-12-01 21:31:50 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Stanislav Ochotnicky
2010-11-22 13:39:15 UTC
Could you please elaborate? jetty doesn't own or attempt to install the pom in question (i.e. it is not a wrong filename or missing filename). Should this bug be closed? jetty-util.pom is the only installed pom that references org.mortbasy.jetty:servlet-api it would be best to replace it with javax.servlet:servlet-api in the pom FYI the problem is with this call:
%add_to_maven_depmap org.mortbay.jetty servlet-api %{version} JPP tomcat6-servlet-2.5-api
This call tells us that there should be tomcat6-servlet-2.5-api jar file and JPP-tomcat6-servlet-2.5.api.pom file. These files are present in tomcat6 package not jetty though. There are 2 normal solutions:
1. Fix pom file of jetty to use normal javax.servlet:servlet-api depmap
2. move the depmap call to tomca6.
The first approach is better IMO, since this depmap is quite unique...
A fix has been made to do option 1 above and a build has been done in rawhide. |