blob: 2c0e37f571ae84d4d0126d6d42955d6eb311965b [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>provenanceconnector</artifactId>
<packaging>bundle</packaging>
<name>Database storage and analysis of provenance info</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Private-Package>org.openprovenance.model.*,org.tupeloproject.*</Private-Package>
<Import-Package>!com.sun.xml.bind.marshaller.*,!org.jvnet.jaxb2_commons.lang.*,*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.sf.taverna.t2.core</groupId>
<artifactId>reference-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.core</groupId>
<artifactId>workflowmodel-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.core</groupId>
<artifactId>workflowmodel-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>uk.org.taverna.scufl2</groupId>
<artifactId>scufl2-api</artifactId>
<version>${scufl2.version}</version>
</dependency>
<dependency>
<groupId>uk.org.taverna.configuration</groupId>
<artifactId>taverna-database-configuration-api</artifactId>
<version>${taverna.configuration.version}</version>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>com.springsource.org.jdom</artifactId>
<version>${jdom.version}</version>
</dependency>
<dependency>
<groupId>org.apache.log4j</groupId>
<artifactId>com.springsource.org.apache.log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>com.springsource.org.apache.commons.dbcp</artifactId>
<version>${commons.dbcp.version}</version>
</dependency>
<!--
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>com.springsource.org.apache.commons.lang</artifactId>
<version>${commons.lang.version}</version>
</dependency>
<dependency>
<groupId>org.tupeloproject</groupId>
<artifactId>tupelo-cet</artifactId>
<version>${tupelo.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.tupeloproject</groupId>
<artifactId>tupelo-kernel</artifactId>
<version>${tupelo.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openprovenance</groupId>
<artifactId>opm-core</artifactId>
<version>${opm.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>