Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[buckminster-dev] help run mwe2 workflows through headless build

Hi,

I'm trying to build mwe2 workflows through an ant task. I'm running into following issues.

Here is my ant task:

<path id="Plug-in Dependencies.libraryclasspath">
        <pathelement location="../com.grammer.ovn.de"/>
  <pathelement location="../com.grammer.ovn.rules"/>        
    </path>
 
  <path id="mydsl.classpath">
        <pathelement location="bin"/>
        <path refid="Plug-in Dependencies.libraryclasspath"/>
    </path>

<target name="gen">
<java classname="org.eclipse.emf.mwe2.launch.runtime.Mwe2Launcher" classpathref="mydsl.classpath" fork="true">
<arg value="../com.grammar.ovn.rules/src/com/grammar/ovn/GenerateRules.mwe2" />
</java>
</target>

ERROR:
   [java] Error: Could not find or load main class org.eclipse.emf.mwe2.launch.runtime.Mwe2Launcher
 [java] Java Result: 1

Any help is appreciated.

Thank you.

-Siva.

Back to the top