<?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>
<groupId>net.timbusproject</groupId>
<artifactId>tavernaextractor</artifactId>
<packaging>bundle</packaging>
<name>Simple bundle archetype</name>
<version>1.0-SNAPSHOT</version>
<properties>
<compiler.version>1.7</compiler.version>
<springframework.version>3.2.3.RELEASE</springframework.version>
<osgi.version>4.3.1</osgi.version>
<maven-bundle-plugin.version>2.4.0</maven-bundle-plugin.version>
<t2.core.version>1.4</t2.core.version>
<t2.ui.api.version>1.4</t2.ui.api.version>
<t2.taverna-commandline.version>1.4</t2.taverna-commandline.version>
<t2.ui.activities.version>1.4</t2.ui.activities.version>
<t2.core.provenance.derby.version>1.4</t2.core.provenance.derby.version>
<jung.version>2.0.1</jung.version>
</properties>
<dependencies>
<!--Also imports: org.springframework:spring-beans; org.springframework:spring-core-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${springframework.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${osgi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>${osgi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
<version>1.3.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.jcraft.jsch</groupId>
<artifactId>com.springsource.com.jcraft.jsch</artifactId>
<version>0.1.41</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.core</groupId>
<artifactId>workflowmodel-api</artifactId>
<version>${t2.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.ui-api</groupId>
<artifactId>activity-palette-api</artifactId>
<version>${t2.ui.api.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.taverna-commandline</groupId>
<artifactId>taverna-commandline-common</artifactId>
<version>${t2.taverna-commandline.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.ui-api</groupId>
<artifactId>menu-api</artifactId>
<version>${t2.ui.api.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2</groupId>
<artifactId>activities</artifactId>
<version>${t2.ui.activities.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.core</groupId>
<artifactId>provenance-derby</artifactId>
<version>${t2.core.provenance.derby.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2</groupId>
<artifactId>provenance-client</artifactId>
<version>0.1</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.activities</groupId>
<artifactId>rest-activity</artifactId>
<version>${t2.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.activities</groupId>
<artifactId>wsdl-activity</artifactId>
<version>${t2.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.activities</groupId>
<artifactId>rshell-activity</artifactId>
<version>${t2.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.activities</groupId>
<artifactId>beanshell-activity</artifactId>
<version>${t2.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.activities</groupId>
<artifactId>external-tool-activity</artifactId>
<version>${t2.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.activities</groupId>
<artifactId>dataflow-activity</artifactId>
<version>${t2.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.activities</groupId>
<artifactId>stringconstant-activity</artifactId>
<version>${t2.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.ui-components</groupId>
<artifactId>graph-model</artifactId>
<version>${t2.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.ui-components</groupId>
<artifactId>graph-model</artifactId>
<version>${t2.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung2</artifactId>
<version>${jung.version}</version>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-algorithms</artifactId>
<version>${jung.version}</version>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
<artifactId>jung-graph-impl</artifactId>
<version>${jung.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${compiler.version}</source>
<target>${compiler.version}</target>
<!--optional arguments: Compiler debugging options-->
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<!--end of optional arguments-->
</configuration>
</plugin>
<!-- for packaging as an OSGi bundle, we use the maven-bundle-plugin -->
<!-- see http://felix.apache.org/site/maven-bundle-plugin-bnd.html for more info -->
<!--generate manifest automatically once the classes are processed (crucial for OSGI bundle deployement-->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<version>${maven-bundle-plugin.version}</version>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<manifestLocation>META-INF</manifestLocation>
<instructions>
<!--Optional arguments: Default values for (Export/Import)-Package are "*" - Everything-->
<Export-Package>!*</Export-Package>
<Import-Package>*</Import-Package>
<!--
add ,plugin.xml if it's present i.e.
src/main/resources,plugin.xml
-->
<Include-Resource>src/main/resources</Include-Resource>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>com.springsource.repository.bundles.external</id>
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
<url>http://repository.springsource.com/maven/bundles/external</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>mygrid-repository</id>
<name>myGrid Repository</name>
<url>http://www.mygrid.org.uk/maven/repository</url>
<releases />
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>