Java Module Help trent  2011-11-21 23:07
Status: Closed
 
Just putting this here for documentation purposes. And in case im doing it a noobs way, someone can tell me...

For a file based module, the above method won't work. You instead need to just copy the directory to the module directory. So the target name would instead be:

<target name="helloworld" >
       <copy todir="${deploy.modules.dir}/helloworld">
           <fileset dir="${basedir}/customModules/helloworld">
           </fileset>
       </copy>
   </target>

With potential include or exclude elements inside the fileset node, to filter out particular files.