blob: 55e53adb7344effada4453c6a0fccd277062a4e5 [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>0.0.1-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.epsilon</groupId>
<artifactId>org.eclipse.epsilon.workflow.test</artifactId>
<version>1.5.1-SNAPSHOT</version>
<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>