From: SourceForge.net <no...@so...> - 2006-08-13 02:20:56
|
Bugs item #1436490, was opened at 2006-02-22 00:37 Message generated for change (Comment added) made by sf-robot You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=497853&aid=1436490&group_id=61626 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: javaapp Group: None >Status: Closed Resolution: Fixed Priority: 5 Submitted By: Daniel Schulz (d-schulz) Assigned to: Jeff Jensen (jeffjensen) Summary: [javaapp] ejb jars are not bundled Initial Comment: There is the snippet: <goal name="javaapp:support-uberjar-bundle" ... <j:if test="${dep.getProperty('uberjar.bundle')=='false' || dep.type !='jar'}"> ... <j:set var="excludes" value="${excludes},${dep.artifactId}"/> that prevents bundling of ejb dependencies. An ejb-dependecies artifact-type is ebj and its file type is jar. So the test should be: <j:if test="${dep.getProperty('uberjar.bundle')=='false' || !(dep.type =='jar' || dep.type=='ejb')}"> Thank you, Daniel ---------------------------------------------------------------------- >Comment By: SourceForge Robot (sf-robot) Date: 2006-08-12 19:20 Message: Logged In: YES user_id=1312539 This Tracker item was closed automatically by the system. It was previously set to a Pending status, and the original submitter did not respond within 14 days (the time period specified by the administrator of this Tracker). ---------------------------------------------------------------------- Comment By: Jeff Jensen (jeffjensen) Date: 2006-07-29 12:40 Message: Logged In: YES user_id=498804 Thanks for reporting this and providing the fix. Sorry for the delay. I will commit your fix and release a snapshot (1.4 snapshot). You will see the email on the user list within the next few days. Please test and report your results on this defect thread! ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=497853&aid=1436490&group_id=61626 |