1
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
3
|
|
4
|
<parent>
|
5
|
<groupId>eu.etaxonomy</groupId>
|
6
|
<artifactId>taxeditor-parent</artifactId>
|
7
|
<version>3.0</version>
|
8
|
</parent>
|
9
|
|
10
|
<modelVersion>4.0.0</modelVersion>
|
11
|
<groupId>eu.etaxonomy</groupId>
|
12
|
<artifactId>eu.etaxonomy.taxeditor.navigation</artifactId>
|
13
|
<packaging>jar</packaging>
|
14
|
<version>3.0</version>
|
15
|
|
16
|
<name>Navigation Bundle</name>
|
17
|
<description>Provides navigational views such as the Taxonomic Tree or Search Views</description>
|
18
|
|
19
|
<url>http://dev.e-taxonomy.eu/trac/wiki/TaxonomicEditorNavigationBundle</url>
|
20
|
|
21
|
<dependencies>
|
22
|
<dependency>
|
23
|
<groupId>eu.etaxonomy</groupId>
|
24
|
<artifactId>eu.etaxonomy.taxeditor.store</artifactId>
|
25
|
</dependency>
|
26
|
<dependency>
|
27
|
<groupId>eu.etaxonomy</groupId>
|
28
|
<artifactId>eu.etaxonomy.taxeditor.editor</artifactId>
|
29
|
</dependency>
|
30
|
</dependencies>
|
31
|
|
32
|
</project>
|
33
|
|
34
|
|