Hi !

        I have a little problem in one of my tasks ! :)
        After the end of the first task (and the first task ended correctly!:),
the second task isn't execute and it seems that ant is waiting for
something ... but for what ?

        Is the problem coming from the use of exec task ?
        Is the commentar "Execute:Java13CommandLauncher: ir3_start" normal ?

Here is the log :
---------------
     [exec] Current OS is SunOS
     [exec] ir3_start
Execute:Java13CommandLauncher: ir3_start
     [exec] The OpenCCM's OMG IDL3 Repository will be started.
     [exec] Launching the OpenCCM's IR3.
     [exec] Feeding the OpenCCM's IR3 with the IFR_3_0.idl file.
     [exec] OpenCCM's OMG IDL 3.0 Compiler 0.3.2: Reading from file
/net/koff/export/rouvoy/OpenCCM/OpenCCM-0.3.2/build/idl/IFR_3_0.idl...
     [exec] OpenCCM's OMG IDL 3.0 Compiler 0.3.2: Preprocessing file
/net/koff/export/rouvoy/OpenCCM/OpenCCM-0.3.2/build/idl/IFR_3_0.idl...
     [exec] OpenCCM's OMG IDL 3.0 Compiler 0.3.2: File
/net/koff/export/rouvoy/OpenCCM/OpenCCM-0.3.2/build/idl/IFR_3_0.idl
preprocessed
     [exec] OpenCCM's OMG IDL 3.0 Compiler 0.3.2: Feeding the Interface
Repository ...
     [exec] OpenCCM's OMG IDL 3.0 Compiler 0.3.2: Compilation completed:
0 warnings.
     [exec] Feeding the OpenCCM's IR3 with the Components.idl file.
     [exec] OpenCCM's OMG IDL 3.0 Compiler 0.3.2: Reading from file
/net/koff/export/rouvoy/OpenCCM/OpenCCM-0.3.2/build/idl/Components.idl...
     [exec] OpenCCM's OMG IDL 3.0 Compiler 0.3.2: Preprocessing file
/net/koff/export/rouvoy/OpenCCM/OpenCCM-0.3.2/build/idl/Components.idl...
     [exec] OpenCCM's OMG IDL 3.0 Compiler 0.3.2: File
/net/koff/export/rouvoy/OpenCCM/OpenCCM-0.3.2/build/idl/Components.idl
preprocessed
     [exec] OpenCCM's OMG IDL 3.0 Compiler 0.3.2: Feeding the Interface
Repository ...
     [exec] OpenCCM's OMG IDL 3.0 Compiler 0.3.2: Compilation completed:
0 warnings.
     [exec] The OpenCCM's OMG IDL3 Repository is started.

Here is the code :
----------------
  <target name="generation">
    <exec executable="ir3_start" os="SunOS"/> <!-- THAT IS THE FIRST
TASK -->

    <echo message="Feeding the OMG IDL3 Repository with
${demo.idl3.file}" /> <!-- THAT IS THE TASK WHICH DON'T BEGIN -->
    <exec executable="ir3_feed" os="SunOS" >
      <arg value="${demo.idl3.file}"/>
    </exec>

    <echo message="Generating ${demo.idl2.file}" />
    <exec executable="ir3_idl2" os="SunOS">
      <arg value="-o ${demo.idl2.file}" />
      <arg value="-i Components.idl" /> 
      <arg value="::${demo.name}" />
    </exec>

    <echo message="Generating ${demo.name} OpenCCM skeletons." />
    <exec executable="ir3_java" os="SunOS">
      <arg value="::${demo.name}" />
    </exec>
    <exec executable="ir3_stop" os="SunOS"/>
  </target>


Thanks,
Romain

-- 
R. Rouvoy

------------------------------
Romain ROUVOY <[EMAIL PROTECTED]>
GOAL Team - LIFL (Laboratoire d'Informatique Fondamentale de Lille)
USTL Lille 1 - France

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to