-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
113 lines (110 loc) · 3.48 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?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>
<artifactId>taverna-parent</artifactId>
<groupId>net.sf.taverna</groupId>
<version>2.6-SNAPSHOT</version>
<relativePath>../../taverna-parent/pom.xml</relativePath>
</parent>
<groupId>net.sf.taverna.t2</groupId>
<artifactId>ui-exts</artifactId>
<version>1.6-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Taverna 2 UI extensions</name>
<description>Extensions for the Taverna 2 workbench libraries</description>
<modules>
<module>constant-value</module>
<!--module>file-translator</module-->
<module>loop-ui</module>
<module>parallelize-ui</module>
<module>report-explainer</module>
<module>retry-ui</module>
<module>menu-items</module>
<module>perspective-biocatalogue</module>
<module>perspective-myexperiment</module>
<module>renderers-exts</module>
</modules>
<repositories>
<repository>
<releases />
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>mygrid-repository</id>
<name>myGrid Repository</name>
<url>http://www.mygrid.org.uk/maven/repository</url>
</repository>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots />
<id>mygrid-snapshot-repository</id>
<name>myGrid Snapshot Repository</name>
<url>http://www.mygrid.org.uk/maven/snapshot-repository</url>
</repository>
</repositories>
<scm>
<connection>scm:git:https://github.com/taverna/taverna-ui-exts.git</connection>
<developerConnection>scm:git:ssh://[email protected]:taverna/taverna-ui-exts.git</developerConnection>
<url>https://github.com/taverna/taverna-ui-exts</url>
<tag>HEAD</tag>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.help</groupId>
<artifactId>javahelp</artifactId>
<version>${javahelp.version}</version>
</dependency>
<dependency>
<groupId>uk.org.mygrid.taverna</groupId>
<artifactId>osxapplication</artifactId>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons.codec.version}</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>${commons.collections.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons.lang.version}</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>${mail.version}</version>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
<version>${jdom.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>