Re: javadoc and src location

From: Anjo Krank (kran..ogicunited.com)
Date: Fri Feb 11 2005 - 10:14:11 EST

  • Next message: wolip..atos.de: "change the Install directory"

    Am 11.02.2005 um 15:17 schrieb Anjo Krank:

    >> How about if you could put a src.jar file into the
    >> SomeName.framework/Resources/ folder? If present, this would would
    >> get used...
    >
    > Come to think of it, we could add this as a flag to the
    > woframework/woapplication tasks as "includeSources=true". Then this
    > would happen automagically.

    There's now a <sources /> fileset in WOApplication and WOFramework that
    creates a "xxx.framework/Resources/Java/src.jar" when given. This looks
    like:

             <woframework name="${project.name}" destDir="${build.root}"
    principalClass="${project.principal.class}" jarName="${project.name}">
                 <sources dir="${project.dir}/Sources">
                     <include name="**/*.java" />
                 </sources>

                 <lib dir="${project.dir}/Libraries">
                     ...
                 </lib>
                 <classes dir="${build.classes}">
                     ...
                 </classes>
                 <resources dir="${project.dir}/Components">
                     ...
                 </resources>
                 <wsresources dir="${project.dir}/WebServerResources">
                     ...
                 </wsresources>
             </woframework>

    This is afterwards picked up by Eclipse. When you deploy it, you should
    omit that file.

    Cheers, Anjo



    This archive was generated by hypermail 2.0.0 : Fri Feb 11 2005 - 10:14:24 EST