Thomas Vachuska | f758255 | 2015-05-14 10:13:46 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
Thomas Vachuska | f758255 | 2015-05-14 10:13:46 -0700 | [diff] [blame] | 4 | ~ |
| 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'Connor | 955c316 | 2016-03-10 15:27:19 -0800 | [diff] [blame] | 30 | <version>1.6.0-SNAPSHOT</version> |
Thomas Vachuska | f758255 | 2015-05-14 10:13:46 -0700 | [diff] [blame] | 31 | <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 Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 47 | <groupId>org.glassfish.jersey.containers</groupId> |
| 48 | <artifactId>jersey-container-servlet</artifactId> |
| 49 | <version>2.22.2</version> |
Thomas Vachuska | f758255 | 2015-05-14 10:13:46 -0700 | [diff] [blame] | 50 | </dependency> |
Simon Hunt | 8483e9d | 2015-05-26 18:22:07 -0700 | [diff] [blame] | 51 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 52 | <groupId>org.glassfish.jersey.core</groupId> |
Simon Hunt | 8483e9d | 2015-05-26 18:22:07 -0700 | [diff] [blame] | 53 | <artifactId>jersey-client</artifactId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 54 | <version>2.22.2</version> |
Simon Hunt | 8483e9d | 2015-05-26 18:22:07 -0700 | [diff] [blame] | 55 | </dependency> |
Simon Hunt | 8dd716a | 2015-05-14 18:51:52 -0700 | [diff] [blame] | 56 | |
| 57 | <dependency> |
Thomas Vachuska | eac4aba | 2015-06-01 09:39:15 -0700 | [diff] [blame] | 58 | <groupId>org.slf4j</groupId> |
| 59 | <artifactId>slf4j-api</artifactId> |
Jian Li | e4583fd | 2016-01-22 10:02:43 -0800 | [diff] [blame] | 60 | <version>1.7.13</version> |
Simon Hunt | 8483e9d | 2015-05-26 18:22:07 -0700 | [diff] [blame] | 61 | </dependency> |
Thomas Vachuska | eac4aba | 2015-06-01 09:39:15 -0700 | [diff] [blame] | 62 | |
| 63 | <dependency> |
| 64 | <groupId>org.slf4j</groupId> |
| 65 | <artifactId>slf4j-jdk14</artifactId> |
Jian Li | e4583fd | 2016-01-22 10:02:43 -0800 | [diff] [blame] | 66 | <version>1.7.13</version> |
Thomas Vachuska | eac4aba | 2015-06-01 09:39:15 -0700 | [diff] [blame] | 67 | </dependency> |
| 68 | |
Simon Hunt | 8483e9d | 2015-05-26 18:22:07 -0700 | [diff] [blame] | 69 | <dependency> |
Simon Hunt | 8dd716a | 2015-05-14 18:51:52 -0700 | [diff] [blame] | 70 | <groupId>commons-io</groupId> |
| 71 | <artifactId>commons-io</artifactId> |
| 72 | <version>2.4</version> |
| 73 | </dependency> |
Simon Hunt | f844f63 | 2015-05-20 19:06:35 -0700 | [diff] [blame] | 74 | <dependency> |
| 75 | <groupId>com.fasterxml.jackson.core</groupId> |
| 76 | <artifactId>jackson-core</artifactId> |
Jian Li | e4583fd | 2016-01-22 10:02:43 -0800 | [diff] [blame] | 77 | <version>2.7.0</version> |
Simon Hunt | f844f63 | 2015-05-20 19:06:35 -0700 | [diff] [blame] | 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>com.fasterxml.jackson.core</groupId> |
| 81 | <artifactId>jackson-databind</artifactId> |
Jian Li | e4583fd | 2016-01-22 10:02:43 -0800 | [diff] [blame] | 82 | <version>2.7.0</version> |
Simon Hunt | f844f63 | 2015-05-20 19:06:35 -0700 | [diff] [blame] | 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>com.google.guava</groupId> |
| 86 | <artifactId>guava</artifactId> |
Jian Li | e4583fd | 2016-01-22 10:02:43 -0800 | [diff] [blame] | 87 | <version>19.0</version> |
Simon Hunt | f844f63 | 2015-05-20 19:06:35 -0700 | [diff] [blame] | 88 | </dependency> |
Thomas Vachuska | f758255 | 2015-05-14 10:13:46 -0700 | [diff] [blame] | 89 | </dependencies> |
| 90 | |
Jonathan Hart | 4809de7 | 2015-06-05 09:37:12 -0700 | [diff] [blame] | 91 | <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 Hunt | 851f2f8 | 2015-06-05 10:27:03 -0700 | [diff] [blame] | 101 | <source>1.7</source> |
| 102 | <target>1.7</target> |
Jonathan Hart | 4809de7 | 2015-06-05 09:37:12 -0700 | [diff] [blame] | 103 | </configuration> |
| 104 | </plugin> |
| 105 | </plugins> |
| 106 | </pluginManagement> |
| 107 | </build> |
| 108 | |
Thomas Vachuska | f758255 | 2015-05-14 10:13:46 -0700 | [diff] [blame] | 109 | </project> |