blob: d48dfa229d2b64620a8ec786341c3eb1fb40ce19 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.epsilon</groupId>
<artifactId>tests</artifactId>
<version>2.3.0-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.epsilon.workflow.test</artifactId>
<packaging>eclipse-plugin</packaging>
<build>
<plugins>
<!-- The Tycho-built default .jar has the tasks in lib/*.jar, just as
in the plugin that we'd like to distribute. However, we need them here as
a regular .jar in order to be able to compile this plugin. We'll add the
.jar straight to Tycho's classpath only for compilation, as we do in Eclipse. -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<extraClasspathElements>
<extraClasspathElement>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.epsilon.workflow</artifactId>
<version>${project.version}</version>
<classifier>taskjar</classifier>
</extraClasspathElement>
<extraClasspathElement>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.epsilon.workflow.emf</artifactId>
<version>${project.version}</version>
<classifier>taskjar</classifier>
</extraClasspathElement>
<extraClasspathElement>
<groupId>${project.groupId}</groupId>
<artifactId>org.eclipse.epsilon.workflow.csv</artifactId>
<version>${project.version}</version>
<classifier>taskjar</classifier>
</extraClasspathElement>
</extraClasspathElements>
</configuration>
</plugin>
</plugins>
</build>
</project>