Menu

Newbie:No public execute() in class foundrylo

Help
Dinesh
2004-01-17
2004-01-23
  • Dinesh

    Dinesh - 2004-01-17

    Hi,

    I am trying VPP but having problems getting started.  Please help.
    Environment:
    Win2K JDK 1.4.2_02
    Ant 1.6.0
    VPP: 1.2.2

    Thanks for your help,
    Dinesh

    Ant output:
    No public execute() in class foundrylogic.vpp.VPPConfig

    build.xml:
    <?xml version="1.0" encoding="utf-8" ?>
    <project basedir="." default="main" name="sfEditor">

        <target name="vppInit">
            <taskdef resource="foundrylogic/vpp/typedef.properties" /> 
            <taskdef resource="foundrylogic/vpp/taskdef.properties" />
        </target>

        <target name="dovpp" depends="vppInit"> 
            <vppcopy todir="." overwrite="true">   
                <fileset dir="." includes="*.html.vpp" />   
                <mapper type="glob" from="*.html.vpp" to="*.html" /> 
            </vppcopy>
        </target>

        <target name="main" depends="dovpp, chmod"> 
        </target>
    </project>

     
    • Dinesh

      Dinesh - 2004-01-17

      Sorry for the wrong info:
      VPP is 2.1.0 and not 1.2.2

      Classpath:
      CLASSPATH=C:\j2sdk1.4.2_01\lib\tools.jar;C:\java\junit3.8.1\junit.jar;C:\java\saxon653\saxon.jar;C:\java\VPP\foundrylogic-vpp-2.1.0.jar;

       
      • Dave Masser-Frye

        You have a small typo in your build file.  You used a taskdef task to define the typedef.properties when you should have used typdef.

        <target name="vppInit">
        ---><typedef resource="foundrylogic/vpp/typedef.properties" />
        <taskdef resource="foundrylogic/vpp/taskdef.properties" />
        </target>

         
    • Dinesh

      Dinesh - 2004-01-23

      Dave,

      Thank you for your help.  Can you or somebody please edit the main page of the project and fix this typo?  I think this typo also exists somewhere else in the documentation.  I only copied this stuff from the docs :-)

      Thanks,
      Dinesh

       
      • Dave Masser-Frye

        I'll fix it.  Thanks!

         

Log in to post a comment.