blob: b263a04bdf6968a675bc02d4df7ab41e9e7f0b07 [file] [log] [blame]
Pamela Dragosh3d0fef42018-08-23 13:38:15 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Gary Wudf9b15a2018-09-12 15:11:04 -07003 Copyright (c) 2018 AT&T Technologies and others.
Pamela Dragosh3d0fef42018-08-23 13:38:15 -04004
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" 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">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <groupId>org.onap.oparent</groupId>
21 <artifactId>version</artifactId>
Gary Wu49665ca2019-06-21 10:31:57 -070022 <version>2.1.0-SNAPSHOT</version>
Pamela Dragosh3d0fef42018-08-23 13:38:15 -040023 <relativePath>..</relativePath>
24 </parent>
25 <artifactId>dependencies</artifactId>
26 <name>oparent/dependencies</name>
27 <packaging>pom</packaging>
rootfe744e92018-11-11 21:56:44 -050028 <properties>
Gary Wudb5e7d52019-02-11 09:28:25 -080029 <spring.version>5.1.2.RELEASE</spring.version>
Pamela Dragosh43601c62019-08-19 12:09:03 -040030 <jetty.version>9.4.20.v20190813</jetty.version>
rootfe744e92018-11-11 21:56:44 -050031 </properties>
Pamela Dragosh3d0fef42018-08-23 13:38:15 -040032 <dependencyManagement>
33 <dependencies>
34 <dependency>
35 <groupId>com.google.guava</groupId>
36 <artifactId>guava</artifactId>
Gary Wudb5e7d52019-02-11 09:28:25 -080037 <version>27.0-jre</version>
Pamela Dragosh3d0fef42018-08-23 13:38:15 -040038 </dependency>
Gary Wudf9b15a2018-09-12 15:11:04 -070039 <dependency>
40 <groupId>org.eclipse.jetty</groupId>
41 <artifactId>jetty-http</artifactId>
Pamela Dragosh43601c62019-08-19 12:09:03 -040042 <version>${jetty.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070043 </dependency>
44 <dependency>
45 <groupId>org.eclipse.jetty</groupId>
46 <artifactId>jetty-servlet</artifactId>
Pamela Dragosh43601c62019-08-19 12:09:03 -040047 <version>${jetty.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070048 </dependency>
49 <dependency>
50 <groupId>org.eclipse.jetty</groupId>
51 <artifactId>jetty-server</artifactId>
Pamela Dragosh43601c62019-08-19 12:09:03 -040052 <version>${jetty.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070053 </dependency>
54 <dependency>
55 <groupId>org.springframework</groupId>
56 <artifactId>spring-core</artifactId>
rootfe744e92018-11-11 21:56:44 -050057 <version>${spring.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070058 </dependency>
59 <dependency>
60 <groupId>org.springframework</groupId>
61 <artifactId>spring-expression</artifactId>
rootfe744e92018-11-11 21:56:44 -050062 <version>${spring.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070063 </dependency>
64 <dependency>
65 <groupId>org.springframework</groupId>
66 <artifactId>spring-web</artifactId>
rootfe744e92018-11-11 21:56:44 -050067 <version>${spring.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070068 </dependency>
69 <dependency>
70 <groupId>org.springframework</groupId>
71 <artifactId>spring-webmvc</artifactId>
rootfe744e92018-11-11 21:56:44 -050072 <version>${spring.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070073 </dependency>
74 <dependency>
75 <groupId>commons-beanutils</groupId>
76 <artifactId>commons-beanutils</artifactId>
77 <version>1.9.3</version>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.tomcat.embed</groupId>
81 <artifactId>tomcat-embed-core</artifactId>
Gary Wudb5e7d52019-02-11 09:28:25 -080082 <version>9.0.14</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070083 </dependency>
84 <dependency>
85 <groupId>org.codehaus.jackson</groupId>
86 <artifactId>jackson-mapper-asl</artifactId>
87 <version>1.9.13</version>
88 </dependency>
89 <dependency>
90 <groupId>org.webjars</groupId>
91 <artifactId>bootstrap</artifactId>
Gary Wudb5e7d52019-02-11 09:28:25 -080092 <version>4.2.1</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070093 </dependency>
94 <dependency>
95 <groupId>com.fasterxml.jackson.core</groupId>
96 <artifactId>jackson-core</artifactId>
Gary Wudb5e7d52019-02-11 09:28:25 -080097 <version>2.9.8</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070098 </dependency>
99 <dependency>
100 <groupId>org.webjars</groupId>
101 <artifactId>jquery</artifactId>
102 <version>3.3.1-1</version>
103 </dependency>
104 <dependency>
105 <groupId>ch.qos.logback</groupId>
106 <artifactId>logback-classic</artifactId>
107 <version>1.2.3</version>
108 </dependency>
109 <dependency>
110 <groupId>org.apache.httpcomponents</groupId>
111 <artifactId>httpclient</artifactId>
Gary Wudb5e7d52019-02-11 09:28:25 -0800112 <version>4.5.7</version>
Gary Wudf9b15a2018-09-12 15:11:04 -0700113 </dependency>
114 <dependency>
115 <groupId>xerces</groupId>
116 <artifactId>xercesImpl</artifactId>
117 <version>2.12.0</version>
118 </dependency>
Pamela Dragosh3d0fef42018-08-23 13:38:15 -0400119 </dependencies>
120 </dependencyManagement>
121</project>