blob: 8e255bab77019c8fc2ebff5c1883c0221b213150 [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-components</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
<groupId>net.sf.taverna.t2.ui-components</groupId>
<artifactId>graph-model</artifactId>
<packaging>bundle</packaging>
<name>Graph Model</name>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javacc-maven-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>javacc</id>
<goals>
<goal>jjtree-javacc</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
javacc-maven-plugin
</artifactId>
<versionRange>
[2.6,)
</versionRange>
<goals>
<goal>jjtree-javacc</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute>
<runOnIncremental>false</runOnIncremental>
</execute>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>net.sf.taverna.t2.ui-api</groupId>
<artifactId>configuration-api</artifactId>
<version>${t2.ui.api.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.ui-api</groupId>
<artifactId>edits-api</artifactId>
<version>${t2.ui.api.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.ui-api</groupId>
<artifactId>selection-api</artifactId>
<version>${t2.ui.api.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.ui-impl</groupId>
<artifactId>configuration-impl</artifactId>
<version>${t2.ui.impl.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.lang</groupId>
<artifactId>observer</artifactId>
<version>${t2.lang.version}</version>
</dependency>
<dependency>
<groupId>net.sf.taverna.t2.lang</groupId>
<artifactId>io</artifactId>
<version>${t2.lang.version}</version>
</dependency>
<dependency>
<groupId>uk.org.taverna.scufl2</groupId>
<artifactId>scufl2-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.batik</groupId>
<artifactId>batik-osgi</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>${commons.beanutils.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>