blob: 37f7a63d37e763f169065db1811b72baca473a26 [file] [log] [blame]
Pamela Dragosh3d0fef42018-08-23 13:38:15 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Pamela Dragoshd8ac1192020-01-20 16:05:29 -05003 Copyright (c) 2018-2020 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>
Pamela Dragoshde497772020-04-20 12:52:50 -040022 <version>3.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>
Pamela Dragoshdacf7862020-06-15 09:14:25 -040029 <spring.version>5.2.7.RELEASE</spring.version>
30 <jetty.version>9.4.29.v20200521</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>
Pamela Dragoshdacf7862020-06-15 09:14:25 -040037 <version>29.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>
Pamela Dragosh1ad6abf2020-05-12 10:49:53 -040051 <artifactId>jetty-servlets</artifactId>
52 <version>${jetty.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>org.eclipse.jetty</groupId>
Gary Wudf9b15a2018-09-12 15:11:04 -070056 <artifactId>jetty-server</artifactId>
Pamela Dragosh43601c62019-08-19 12:09:03 -040057 <version>${jetty.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070058 </dependency>
59 <dependency>
60 <groupId>org.springframework</groupId>
61 <artifactId>spring-core</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-expression</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-web</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>org.springframework</groupId>
76 <artifactId>spring-webmvc</artifactId>
rootfe744e92018-11-11 21:56:44 -050077 <version>${spring.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070078 </dependency>
79 <dependency>
80 <groupId>commons-beanutils</groupId>
81 <artifactId>commons-beanutils</artifactId>
Brian Freemanb30c69d2019-08-29 16:05:47 -050082 <version>1.9.4</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070083 </dependency>
84 <dependency>
85 <groupId>org.apache.tomcat.embed</groupId>
86 <artifactId>tomcat-embed-core</artifactId>
Pamela Dragoshdacf7862020-06-15 09:14:25 -040087 <version>9.0.36</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070088 </dependency>
89 <dependency>
90 <groupId>org.webjars</groupId>
91 <artifactId>bootstrap</artifactId>
Pamela Dragoshdacf7862020-06-15 09:14:25 -040092 <version>4.5.0</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070093 </dependency>
94 <dependency>
95 <groupId>com.fasterxml.jackson.core</groupId>
96 <artifactId>jackson-core</artifactId>
Pamela Dragoshdacf7862020-06-15 09:14:25 -040097 <version>2.11.0</version>
Pamela Dragoshd8ac1192020-01-20 16:05:29 -050098 </dependency>
99 <dependency>
100 <groupId>com.fasterxml.jackson.core</groupId>
101 <artifactId>jackson-databind</artifactId>
Pamela Dragoshdacf7862020-06-15 09:14:25 -0400102 <version>2.11.0</version>
Gary Wudf9b15a2018-09-12 15:11:04 -0700103 </dependency>
104 <dependency>
105 <groupId>org.webjars</groupId>
106 <artifactId>jquery</artifactId>
Pamela Dragoshdacf7862020-06-15 09:14:25 -0400107 <version>3.5.1</version>
Gary Wudf9b15a2018-09-12 15:11:04 -0700108 </dependency>
109 <dependency>
110 <groupId>ch.qos.logback</groupId>
111 <artifactId>logback-classic</artifactId>
Jim Hahnb7b8f322020-05-06 12:46:12 -0400112 <version>1.2.3</version>
Gary Wudf9b15a2018-09-12 15:11:04 -0700113 </dependency>
114 <dependency>
115 <groupId>org.apache.httpcomponents</groupId>
116 <artifactId>httpclient</artifactId>
Pamela Dragoshdacf7862020-06-15 09:14:25 -0400117 <version>4.5.12</version>
Gary Wudf9b15a2018-09-12 15:11:04 -0700118 </dependency>
119 <dependency>
120 <groupId>xerces</groupId>
121 <artifactId>xercesImpl</artifactId>
122 <version>2.12.0</version>
123 </dependency>
Pamela Dragosh3d0fef42018-08-23 13:38:15 -0400124 </dependencies>
125 </dependencyManagement>
126</project>