blob: 7fc3f61e28b738e42b921d63f491bba546b4f636 [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.
puthuparambil.aditya563d6362020-07-01 12:49:11 +01004 Modifications Copyright (C) 2020 Bell Canada.
Pamela Dragosh3d0fef42018-08-23 13:38:15 -04005
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18<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">
19 <modelVersion>4.0.0</modelVersion>
20 <parent>
21 <groupId>org.onap.oparent</groupId>
22 <artifactId>version</artifactId>
Jim Hahn8e4d8572021-07-29 10:21:58 -040023 <version>3.2.2-SNAPSHOT</version>
Pamela Dragosh3d0fef42018-08-23 13:38:15 -040024 <relativePath>..</relativePath>
25 </parent>
26 <artifactId>dependencies</artifactId>
27 <name>oparent/dependencies</name>
28 <packaging>pom</packaging>
rootfe744e92018-11-11 21:56:44 -050029 <properties>
liamfallon44e6ae32021-06-25 12:38:16 +010030 <spring.version>5.3.8</spring.version>
Dragosh, Pamela (pd1248)5b3b0072021-06-25 10:30:07 -040031 <jetty.version>9.4.41.v20210516</jetty.version>
rootfe744e92018-11-11 21:56:44 -050032 </properties>
Pamela Dragosh3d0fef42018-08-23 13:38:15 -040033 <dependencyManagement>
34 <dependencies>
35 <dependency>
36 <groupId>com.google.guava</groupId>
37 <artifactId>guava</artifactId>
Dragosh, Pamela (pd1248)5b3b0072021-06-25 10:30:07 -040038 <version>30.1.1-jre</version>
Pamela Dragosh3d0fef42018-08-23 13:38:15 -040039 </dependency>
Gary Wudf9b15a2018-09-12 15:11:04 -070040 <dependency>
41 <groupId>org.eclipse.jetty</groupId>
42 <artifactId>jetty-http</artifactId>
Pamela Dragosh43601c62019-08-19 12:09:03 -040043 <version>${jetty.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070044 </dependency>
45 <dependency>
46 <groupId>org.eclipse.jetty</groupId>
47 <artifactId>jetty-servlet</artifactId>
Pamela Dragosh43601c62019-08-19 12:09:03 -040048 <version>${jetty.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070049 </dependency>
50 <dependency>
51 <groupId>org.eclipse.jetty</groupId>
Pamela Dragosh1ad6abf2020-05-12 10:49:53 -040052 <artifactId>jetty-servlets</artifactId>
53 <version>${jetty.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.eclipse.jetty</groupId>
Gary Wudf9b15a2018-09-12 15:11:04 -070057 <artifactId>jetty-server</artifactId>
Pamela Dragosh43601c62019-08-19 12:09:03 -040058 <version>${jetty.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070059 </dependency>
60 <dependency>
RossC84889d92020-06-25 14:58:16 +010061 <groupId>org.eclipse.jetty</groupId>
62 <artifactId>jetty-security</artifactId>
63 <version>${jetty.version}</version>
64 </dependency>
65 <dependency>
Gary Wudf9b15a2018-09-12 15:11:04 -070066 <groupId>org.springframework</groupId>
67 <artifactId>spring-core</artifactId>
rootfe744e92018-11-11 21:56:44 -050068 <version>${spring.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070069 </dependency>
70 <dependency>
71 <groupId>org.springframework</groupId>
72 <artifactId>spring-expression</artifactId>
rootfe744e92018-11-11 21:56:44 -050073 <version>${spring.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070074 </dependency>
75 <dependency>
76 <groupId>org.springframework</groupId>
77 <artifactId>spring-web</artifactId>
rootfe744e92018-11-11 21:56:44 -050078 <version>${spring.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070079 </dependency>
80 <dependency>
81 <groupId>org.springframework</groupId>
82 <artifactId>spring-webmvc</artifactId>
rootfe744e92018-11-11 21:56:44 -050083 <version>${spring.version}</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070084 </dependency>
85 <dependency>
86 <groupId>commons-beanutils</groupId>
87 <artifactId>commons-beanutils</artifactId>
Brian Freemanb30c69d2019-08-29 16:05:47 -050088 <version>1.9.4</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070089 </dependency>
90 <dependency>
91 <groupId>org.apache.tomcat.embed</groupId>
92 <artifactId>tomcat-embed-core</artifactId>
Dragosh, Pamela (pd1248)5b3b0072021-06-25 10:30:07 -040093 <version>9.0.46</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070094 </dependency>
95 <dependency>
96 <groupId>org.webjars</groupId>
97 <artifactId>bootstrap</artifactId>
Dragosh, Pamela (pd1248)5b3b0072021-06-25 10:30:07 -040098 <version>5.0.1</version>
Gary Wudf9b15a2018-09-12 15:11:04 -070099 </dependency>
100 <dependency>
101 <groupId>com.fasterxml.jackson.core</groupId>
102 <artifactId>jackson-core</artifactId>
Dragosh, Pamela (pd1248)5b3b0072021-06-25 10:30:07 -0400103 <version>2.12.3</version>
Pamela Dragoshd8ac1192020-01-20 16:05:29 -0500104 </dependency>
105 <dependency>
106 <groupId>com.fasterxml.jackson.core</groupId>
107 <artifactId>jackson-databind</artifactId>
Dragosh, Pamela (pd1248)5b3b0072021-06-25 10:30:07 -0400108 <version>2.12.3</version>
Gary Wudf9b15a2018-09-12 15:11:04 -0700109 </dependency>
110 <dependency>
111 <groupId>org.webjars</groupId>
112 <artifactId>jquery</artifactId>
Dragosh, Pamela (pd1248)5b3b0072021-06-25 10:30:07 -0400113 <version>3.6.0</version>
Gary Wudf9b15a2018-09-12 15:11:04 -0700114 </dependency>
115 <dependency>
116 <groupId>ch.qos.logback</groupId>
117 <artifactId>logback-classic</artifactId>
Jim Hahnb7b8f322020-05-06 12:46:12 -0400118 <version>1.2.3</version>
Gary Wudf9b15a2018-09-12 15:11:04 -0700119 </dependency>
120 <dependency>
121 <groupId>org.apache.httpcomponents</groupId>
122 <artifactId>httpclient</artifactId>
Pamela Dragosh119e2762020-11-03 09:54:06 -0500123 <version>4.5.13</version>
Gary Wudf9b15a2018-09-12 15:11:04 -0700124 </dependency>
125 <dependency>
126 <groupId>xerces</groupId>
127 <artifactId>xercesImpl</artifactId>
Dragosh, Pamela (pd1248)5b3b0072021-06-25 10:30:07 -0400128 <version>2.12.1</version>
Gary Wudf9b15a2018-09-12 15:11:04 -0700129 </dependency>
Pamela Dragosh3d0fef42018-08-23 13:38:15 -0400130 </dependencies>
131 </dependencyManagement>
132</project>