blob: c8c1c5dd4f398085fe81531bee770721c7121280 [file] [log] [blame]
Thomas Vachuskaf7582552015-05-14 10:13:46 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
Thomas Vachuskaf7582552015-05-14 10:13:46 -07004 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-base</artifactId>
25 <version>1</version>
26 <relativePath>../../../tools/build/pom.xml</relativePath>
27 </parent>
28
29 <artifactId>cord-gui</artifactId>
Brian O'Connore642f7c2016-05-23 18:33:04 -070030 <version>1.7.0-SNAPSHOT</version>
Thomas Vachuskaf7582552015-05-14 10:13:46 -070031 <packaging>war</packaging>
32
33 <description>Demo CORD Subscriber Web GUI</description>
34
35 <properties>
36 <web.context>/cord</web.context>
37 </properties>
38
39 <dependencies>
40 <dependency>
41 <groupId>javax.servlet</groupId>
42 <artifactId>servlet-api</artifactId>
43 <version>2.5</version>
44 </dependency>
45
46 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080047 <groupId>org.glassfish.jersey.containers</groupId>
48 <artifactId>jersey-container-servlet</artifactId>
49 <version>2.22.2</version>
Thomas Vachuskaf7582552015-05-14 10:13:46 -070050 </dependency>
Simon Hunt8483e9d2015-05-26 18:22:07 -070051 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080052 <groupId>org.glassfish.jersey.core</groupId>
Simon Hunt8483e9d2015-05-26 18:22:07 -070053 <artifactId>jersey-client</artifactId>
Jian Li9d616492016-03-09 10:52:49 -080054 <version>2.22.2</version>
Simon Hunt8483e9d2015-05-26 18:22:07 -070055 </dependency>
Simon Hunt8dd716a2015-05-14 18:51:52 -070056
57 <dependency>
Thomas Vachuskaeac4aba2015-06-01 09:39:15 -070058 <groupId>org.slf4j</groupId>
59 <artifactId>slf4j-api</artifactId>
Jian Li0a119fe2016-04-13 14:24:20 -070060 <version>1.7.21</version>
Simon Hunt8483e9d2015-05-26 18:22:07 -070061 </dependency>
Thomas Vachuskaeac4aba2015-06-01 09:39:15 -070062
63 <dependency>
64 <groupId>org.slf4j</groupId>
65 <artifactId>slf4j-jdk14</artifactId>
Jian Li0a119fe2016-04-13 14:24:20 -070066 <version>1.7.21</version>
Thomas Vachuskaeac4aba2015-06-01 09:39:15 -070067 </dependency>
68
Simon Hunt8483e9d2015-05-26 18:22:07 -070069 <dependency>
Simon Hunt8dd716a2015-05-14 18:51:52 -070070 <groupId>commons-io</groupId>
71 <artifactId>commons-io</artifactId>
72 <version>2.4</version>
73 </dependency>
Simon Huntf844f632015-05-20 19:06:35 -070074 <dependency>
75 <groupId>com.fasterxml.jackson.core</groupId>
76 <artifactId>jackson-core</artifactId>
Jian Li0a119fe2016-04-13 14:24:20 -070077 <version>2.7.3</version>
Simon Huntf844f632015-05-20 19:06:35 -070078 </dependency>
79 <dependency>
80 <groupId>com.fasterxml.jackson.core</groupId>
81 <artifactId>jackson-databind</artifactId>
Jian Li0a119fe2016-04-13 14:24:20 -070082 <version>2.7.3</version>
Simon Huntf844f632015-05-20 19:06:35 -070083 </dependency>
84 <dependency>
85 <groupId>com.google.guava</groupId>
86 <artifactId>guava</artifactId>
Jian Lie4583fd2016-01-22 10:02:43 -080087 <version>19.0</version>
Simon Huntf844f632015-05-20 19:06:35 -070088 </dependency>
Thomas Vachuskaf7582552015-05-14 10:13:46 -070089 </dependencies>
90
Jonathan Hart4809de72015-06-05 09:37:12 -070091 <build>
92 <pluginManagement>
93 <plugins>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-compiler-plugin</artifactId>
97 <!-- TODO: update once following issue is fixed. -->
98 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
99 <version>2.5.1</version>
100 <configuration>
Simon Hunt851f2f82015-06-05 10:27:03 -0700101 <source>1.7</source>
102 <target>1.7</target>
Jonathan Hart4809de72015-06-05 09:37:12 -0700103 </configuration>
104 </plugin>
105 </plugins>
106 </pluginManagement>
107 </build>
108
Thomas Vachuskaf7582552015-05-14 10:13:46 -0700109</project>