1 Reply Latest reply on Oct 31, 2008 3:42 PM by jump

    Build.xml bug in 2.1.0.GA

    jump
          <target name="javadoc" depends="compile">
              <mkdir dir="${dist.dir}/apidoc" />
              <javadoc classpathref="build.classpath" destdir="${dist.dir}/apidoc" use="true" protected="true" version="true" windowtitle="${project.name} API Documentation" doctitle="${project.name} API Documentation" link="http://java.sun.com/j2se/5.0/docs/api">
      
                  <packageset dir="${src.action.dir}" defaultexcludes="yes">
                      <include name="*/**" />
                  </packageset>
      
                  <packageset dir="${src.model.dir}" defaultexcludes="yes">
                      <include name="*/**" />
                  </packageset>
      
              </javadoc>
          </target>



      But there is no action and model dirs in generated project. There are only hot main and test directories.

        • 1. Re: Build.xml bug in 2.1.0.GA
          jump

          ooops. sorry. drop this topic.



                  <property name="src.model.dir" value="src/main" />
                  <property name="src.action.dir" value="src/hot" />
                  <property name="src.test.dir" value="src/test" />