Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Pamela Dragosh | d8ac119 | 2020-01-20 16:05:29 -0500 | [diff] [blame] | 3 | Copyright (c) 2018-2020 AT&T Technologies and others. |
puthuparambil.aditya | 563d636 | 2020-07-01 12:49:11 +0100 | [diff] [blame] | 4 | Modifications Copyright (C) 2020 Bell Canada. |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 5 | |
| 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> |
liamfallon | 41953c4 | 2022-08-31 21:16:47 +0100 | [diff] [blame] | 23 | <version>3.3.3-SNAPSHOT</version> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 24 | <relativePath>..</relativePath> |
| 25 | </parent> |
| 26 | <artifactId>dependencies</artifactId> |
| 27 | <name>oparent/dependencies</name> |
| 28 | <packaging>pom</packaging> |
root | fe744e9 | 2018-11-11 21:56:44 -0500 | [diff] [blame] | 29 | <properties> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 30 | <version.beanutils>1.9.4</version.beanutils> |
| 31 | <version.bootstrap>5.2.3</version.bootstrap> |
| 32 | <version.guava>31.1-jre</version.guava> |
| 33 | <version.httpclient>4.5.14</version.httpclient> |
| 34 | <version.jackson>2.14.1</version.jackson> |
| 35 | <version.jetty>11.0.12</version.jetty> |
| 36 | <version.jquery>3.6.1</version.jquery> |
| 37 | <version.logback>1.4.5</version.logback> |
| 38 | <version.spring>6.0.2</version.spring> |
| 39 | <version.tomcat>10.1.2</version.tomcat> |
| 40 | <version.xerces>2.9.1</version.xerces> |
root | fe744e9 | 2018-11-11 21:56:44 -0500 | [diff] [blame] | 41 | </properties> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 42 | <dependencyManagement> |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>com.google.guava</groupId> |
| 46 | <artifactId>guava</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 47 | <version>${version.guava}</version> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 48 | </dependency> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 49 | <dependency> |
| 50 | <groupId>org.eclipse.jetty</groupId> |
| 51 | <artifactId>jetty-http</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 52 | <version>${version.jetty}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.eclipse.jetty</groupId> |
| 56 | <artifactId>jetty-servlet</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 57 | <version>${version.jetty}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.eclipse.jetty</groupId> |
Pamela Dragosh | 1ad6abf | 2020-05-12 10:49:53 -0400 | [diff] [blame] | 61 | <artifactId>jetty-servlets</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 62 | <version>${version.jetty}</version> |
Pamela Dragosh | 1ad6abf | 2020-05-12 10:49:53 -0400 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.eclipse.jetty</groupId> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 66 | <artifactId>jetty-server</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 67 | <version>${version.jetty}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 68 | </dependency> |
| 69 | <dependency> |
RossC | 84889d9 | 2020-06-25 14:58:16 +0100 | [diff] [blame] | 70 | <groupId>org.eclipse.jetty</groupId> |
| 71 | <artifactId>jetty-security</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 72 | <version>${version.jetty}</version> |
RossC | 84889d9 | 2020-06-25 14:58:16 +0100 | [diff] [blame] | 73 | </dependency> |
| 74 | <dependency> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 75 | <groupId>org.springframework</groupId> |
| 76 | <artifactId>spring-core</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 77 | <version>${version.spring}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.springframework</groupId> |
liamfallon | 3ebb31d | 2022-04-21 12:52:54 +0100 | [diff] [blame] | 81 | <artifactId>spring-beans</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 82 | <version>${version.spring}</version> |
liamfallon | 3ebb31d | 2022-04-21 12:52:54 +0100 | [diff] [blame] | 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.springframework</groupId> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 86 | <artifactId>spring-expression</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 87 | <version>${version.spring}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.springframework</groupId> |
| 91 | <artifactId>spring-web</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 92 | <version>${version.spring}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.springframework</groupId> |
| 96 | <artifactId>spring-webmvc</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 97 | <version>${version.spring}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 98 | </dependency> |
| 99 | <dependency> |
liamfallon | 3ebb31d | 2022-04-21 12:52:54 +0100 | [diff] [blame] | 100 | <groupId>org.springframework</groupId> |
| 101 | <artifactId>spring-jdbc</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 102 | <version>${version.spring}</version> |
liamfallon | 3ebb31d | 2022-04-21 12:52:54 +0100 | [diff] [blame] | 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.springframework</groupId> |
| 106 | <artifactId>spring-webflux</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 107 | <version>${version.spring}</version> |
liamfallon | 3ebb31d | 2022-04-21 12:52:54 +0100 | [diff] [blame] | 108 | </dependency> |
| 109 | <dependency> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 110 | <groupId>commons-beanutils</groupId> |
| 111 | <artifactId>commons-beanutils</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 112 | <version>${version.beanutils}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.apache.tomcat.embed</groupId> |
| 116 | <artifactId>tomcat-embed-core</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 117 | <version>${version.tomcat}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.webjars</groupId> |
| 121 | <artifactId>bootstrap</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 122 | <version>${version.bootstrap}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>com.fasterxml.jackson.core</groupId> |
| 126 | <artifactId>jackson-core</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 127 | <version>${version.jackson}</version> |
Pamela Dragosh | d8ac119 | 2020-01-20 16:05:29 -0500 | [diff] [blame] | 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>com.fasterxml.jackson.core</groupId> |
| 131 | <artifactId>jackson-databind</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 132 | <version>${version.jackson}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.webjars</groupId> |
| 136 | <artifactId>jquery</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 137 | <version>${version.jquery}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>ch.qos.logback</groupId> |
| 141 | <artifactId>logback-classic</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 142 | <version>${version.logback}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.apache.httpcomponents</groupId> |
| 146 | <artifactId>httpclient</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 147 | <version>${version.httpclient}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>xerces</groupId> |
| 151 | <artifactId>xercesImpl</artifactId> |
liamfallon | 7aedd8a | 2022-12-13 12:51:42 +0000 | [diff] [blame] | 152 | <version>${version.xerces}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 153 | </dependency> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 154 | </dependencies> |
| 155 | </dependencyManagement> |
| 156 | </project> |