blob: c72abea3fd26730f5e84044b06c6e241fb2783fd [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.sf.taverna.t2</groupId>
<artifactId>core</artifactId>
<version>2.0.1-SNAPSHOT</version>
</parent>
<groupId>net.sf.taverna.t2.core</groupId>
<artifactId>workflowmodel-impl</artifactId>
<packaging>bundle</packaging>
<name>Workflow Model implementation</name>
<description> Implementation of the core workflow object model for
Taverna 2 workflows including
concrete instances of the workflow
definition objects and enactment behaviours.
</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>
net.sf.taverna.t2.invocation.impl,
net.sf.taverna.t2.workflowmodel.impl,
net.sf.taverna.t2.workflowmodel.processor.iteration.impl,
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.sf.taverna.t2.core</groupId>
<artifactId>workflowmodel-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>com.springsource.org.jdom</artifactId>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>com.springsource.com.thoughtworks.xstream</artifactId>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.core</groupId>
<artifactId>workflowmodel-core-extensions</artifactId>
<version>${project.version}</version>
<!--<scope>test</scope> -->
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>