Bug 922883
| Summary: | jboss-as-jsf-injection difference between eap zip and maven repo zip | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Paul Gier <pgier> | ||||
| Component: | Maven Repository | Assignee: | Rostislav Svoboda <rsvoboda> | ||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | |||||
| Severity: | unspecified | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 6.1.0 | CC: | rsvoboda, vtunka | ||||
| Target Milestone: | ER3 | ||||||
| Target Release: | EAP 6.1.0 | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | Type: | Bug | |||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
Paul Gier
2013-03-18 17:44:49 UTC
Jenkins link: https://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/eap-61-handoff-repository-maven-compare-with-EAP/7/ I think this is related to Multi-JSF support https://community.jboss.org/wiki/DesignOfAS7Multi-JSFFeature Proposed patch: - PATH_IN_EAP=`find $EAP_DIR -name $BASENAME` + if [[ $BASENAME == jboss-as-jsf-injection* ]]; then + PATH_IN_EAP=`find $EAP_DIR -name $BASENAME | head -1` ## BZ 922883 - jboss-as-jsf-injection duplicated + else + PATH_IN_EAP=`find $EAP_DIR -name $BASENAME` + fi Can I merge it ? I need confirmation that jboss-as-jsf-injection duplication is intentional. Hi Rosta, yes, this is indeed intentional, thank you for fixing the test. Cheers, Vaclav Proposed patch merged. Fernado told me duplications like this happen quite a lot, so it's not an isolated case and we can expect issues like this more. We talked with Paul, that this is OK as a workaround this time, but for the future we would like to see more systematic solution. Can you please add this to your todo? Created attachment 712698 [details]
Patch to loop through multiple results for the same filename in the eap zip
Here is a more general fix that should handle cases where multiple files have the same name in the eap zip.
Patch merged + added modifications: - report generated for each file when having multiple files with the same name - listing of duplicated jars Duplication of jboss-as-jsf-injection is intentional |