[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-2770) exploded-archives\{project}.ear\lib was not created if lib.dir is overridden

Alexander Kosenkov (JIRA) jira-events at lists.jboss.org
Wed Mar 19 20:49:50 EDT 2008


exploded-archives\{project}.ear\lib was not created if lib.dir is overridden
----------------------------------------------------------------------------

                 Key: JBSEAM-2770
                 URL: http://jira.jboss.com/jira/browse/JBSEAM-2770
             Project: JBoss Seam
          Issue Type: Patch
          Components: Tools
    Affects Versions: 2.0.1.GA
            Reporter: Alexander Kosenkov
            Priority: Minor


If one overrides lib.dir = ../common-seam/lib, resultin EAR is broken - it will contain no lib folder.

Incorrect seam-gen build.xml code relies on ${basedir}/lib folder under <target name="ear">:

 <copy todir="${ear.dir}">
  <fileset dir="${basedir}">
   <include name="lib/jbpm*.jar"/>

correct implementation:

 <copy todir="${ear.dir}/lib">
  <fileset dir="${lib.dir}">
    <include name="jbpm*.jar"/>


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list