forked from codice-archives/archive-ddf-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
129 lines (117 loc) · 4.96 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright (c) Codice Foundation
*
* This is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either
* version 3 of the License, or any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details. A copy of the GNU Lesser General Public License is distributed along with this program and can be found at
* <http://www.gnu.org/licenses/lgpl.html>.
*
**/
-->
<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/xsd/maven-4.0.0.xsd">
<parent>
<groupId>ddf</groupId>
<artifactId>ddf-parent</artifactId>
<version>2.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>DDF :: UI</name>
<artifactId>ui</artifactId>
<groupId>ddf.ui</groupId>
<version>2.5.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>search-ui</module>
</modules>
<properties>
<cometd.version>2.7.0</cometd.version>
<org.codice.ddf.notifications.version>1.0.1-SNAPSHOT</org.codice.ddf.notifications.version>
<org.codice.ddf.activities.version>0.2.0-SNAPSHOT</org.codice.ddf.activities.version>
<ddf.catalog.app.version>2.5.0-SNAPSHOT</ddf.catalog.app.version>
<ddf.platform.app.version>2.5.0-SNAPSHOT</ddf.platform.app.version>
<karaf.version>2.3.3</karaf.version>
<javax.inject.version>1</javax.inject.version>
<!-- Third-party bundle versions. These should only be used in the features.xml file.
Any bundle dependent on classes from these jars should depend on the jar itself -
not on the bundlized version. -->
<javax.inject.bundle.version>${javax.inject.version}_2</javax.inject.bundle.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>ddf.platform</groupId>
<artifactId>platform</artifactId>
<version>${ddf.platform.app.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.codice.ddf</groupId>
<artifactId>notifications</artifactId>
<version>${org.codice.ddf.notifications.version}</version>
</dependency>
<dependency>
<groupId>org.codice.ddf</groupId>
<artifactId>activities</artifactId>
<version>${org.codice.ddf.activities.version}</version>
</dependency>
<dependency>
<groupId>org.cometd.java</groupId>
<artifactId>bayeux-api</artifactId>
<version>${cometd.version}</version>
</dependency>
<dependency>
<groupId>org.cometd.java</groupId>
<artifactId>cometd-java-common</artifactId>
<version>${cometd.version}</version>
</dependency>
<dependency>
<groupId>org.cometd.java</groupId>
<artifactId>cometd-java-server</artifactId>
<version>${cometd.version}</version>
</dependency>
<dependency>
<groupId>org.cometd.java</groupId>
<artifactId>cometd-java-annotations</artifactId>
<version>${cometd.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.webconsole</groupId>
<artifactId>org.apache.karaf.webconsole.console</artifactId>
<version>${karaf.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>codice</id>
<name>Codice Repository</name>
<url>http://artifacts.codice.org/content/groups/public/</url>
</repository>
</repositories>
</project>