-
Notifications
You must be signed in to change notification settings - Fork 6
Description
Hello Olivier ,
I am trying to launch GmaTransform by maven-tycho in pom.xml (Eclipse-run-plugin and generateEMFCode.xml)
Launching by eclipse is ok.
[emf.Ecore2Java] >> Opening folder /com.st.stellar.clocktree.prototype/src-gen/org_example_component [emf.Ecore2Java] GmaTransform for : [emf.Ecore2Java] -> genClassNamePattern : M{0}Impl [emf.Ecore2Java] -> genInterfaceNamePattern : M{0} [emf.Ecore2Java] -> devClassNamePattern : {0}Impl [emf.Ecore2Java] -> devInterfaceNamePattern : {0} [emf.Ecore2Java] -> devInterfaceNamePattern : {0}
Launching by maven-tycho is ko
GMA Transform is never launched.
[emf.Ecore2Java] >> Opening folder /com.st.stellar.clocktree.prototype/src-gen/org_example_component [emf.Ecore2Java] >> Preparing new /com.st.stellar.clocktree.prototype/src-gen/org_example_component/MOrg_example_componentPackage.java [emf.Ecore2Java] >> Generating Java class org_example_component.impl.MOrg_example_componentPackageImpl [emf.Ecore2Java] >> Generating /com.st.stellar.clocktree.prototype/src-gen/org_example_component/impl/MOrg_example_componentPackageImpl.java [emf.Ecore2Java] >> Opening folder /com.st.stellar.clocktree.prototype/src-gen/org_example_component/impl [emf.Ecore2Java] >> Preparing new /com.st.stellar.clocktree.prototype/src-gen/org_example_component/impl/MOrg_example_componentPackageImpl.java [emf.Ecore2Java] >> Generating Java interface org_example_component.MOrg_example_componentFactory
here is an extract of my pom.xml :
`<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-eclipserun-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<appArgLine>-application org.eclipse.ant.core.antRunner -buildfile generateEMFCode.xml</appArgLine>
<dependencies>
<dependency>
<artifactId>org.eclipse.ant.core</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.apache.ant</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.emf.ant</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.eclipse.emf.importer.ecore</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>org.apache.felix.scr</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>com.st.stellar.component.model</artifactId>
<type>eclipse-plugin</type>
</dependency>
<dependency>
<artifactId>com.opcoach.genmodeladdon.feature</artifactId>
<type>eclipse-feature</type>
</dependency>
<dependency>
<artifactId>org.eclipse.osgi.compatibility.state</artifactId>
<type>eclipse-plugin</type>
</dependency>
</dependencies>`
Have you got a clue about this issue ?
Best regards
Erwan