blob: 24e06c0191f617b73817fa3a834c0916f96e049c [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>ui-impl</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
<groupId>net.sf.taverna.t2.ui-impl</groupId>
<artifactId>renderers-impl</artifactId>
<packaging>bundle</packaging>
<name>Renderers Implementation</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Private-Package>org.fife.ui.hex.*,net.sf.taverna.t2.renderers.impl</Private-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.sf.taverna.t2.ui-api</groupId>
<artifactId>renderers-api</artifactId>
<version>${t2.ui.api.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.lang</groupId>
<artifactId>ui</artifactId>
<version>${t2.lang.version}</version>
</dependency>
<dependency>
<groupId>uk.org.taverna.databundle</groupId>
<artifactId>databundle</artifactId>
<version>${taverna.databundle.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>com.springsource.org.jdom</artifactId>
</dependency>
<dependency>
<groupId>org.fife.ui.hex</groupId>
<artifactId>hexeditor</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>