Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 3 | Copyright (c) 2018 AT&T Technologies and others. |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [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" 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 Wu | 49665ca | 2019-06-21 10:31:57 -0700 | [diff] [blame] | 22 | <version>2.1.0-SNAPSHOT</version> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 23 | <relativePath>..</relativePath> |
| 24 | </parent> |
| 25 | <artifactId>dependencies</artifactId> |
| 26 | <name>oparent/dependencies</name> |
| 27 | <packaging>pom</packaging> |
root | fe744e9 | 2018-11-11 21:56:44 -0500 | [diff] [blame] | 28 | <properties> |
Gary Wu | db5e7d5 | 2019-02-11 09:28:25 -0800 | [diff] [blame] | 29 | <spring.version>5.1.2.RELEASE</spring.version> |
Pamela Dragosh | 43601c6 | 2019-08-19 12:09:03 -0400 | [diff] [blame^] | 30 | <jetty.version>9.4.20.v20190813</jetty.version> |
root | fe744e9 | 2018-11-11 21:56:44 -0500 | [diff] [blame] | 31 | </properties> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 32 | <dependencyManagement> |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>com.google.guava</groupId> |
| 36 | <artifactId>guava</artifactId> |
Gary Wu | db5e7d5 | 2019-02-11 09:28:25 -0800 | [diff] [blame] | 37 | <version>27.0-jre</version> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 38 | </dependency> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 39 | <dependency> |
| 40 | <groupId>org.eclipse.jetty</groupId> |
| 41 | <artifactId>jetty-http</artifactId> |
Pamela Dragosh | 43601c6 | 2019-08-19 12:09:03 -0400 | [diff] [blame^] | 42 | <version>${jetty.version}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.eclipse.jetty</groupId> |
| 46 | <artifactId>jetty-servlet</artifactId> |
Pamela Dragosh | 43601c6 | 2019-08-19 12:09:03 -0400 | [diff] [blame^] | 47 | <version>${jetty.version}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.eclipse.jetty</groupId> |
| 51 | <artifactId>jetty-server</artifactId> |
Pamela Dragosh | 43601c6 | 2019-08-19 12:09:03 -0400 | [diff] [blame^] | 52 | <version>${jetty.version}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.springframework</groupId> |
| 56 | <artifactId>spring-core</artifactId> |
root | fe744e9 | 2018-11-11 21:56:44 -0500 | [diff] [blame] | 57 | <version>${spring.version}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.springframework</groupId> |
| 61 | <artifactId>spring-expression</artifactId> |
root | fe744e9 | 2018-11-11 21:56:44 -0500 | [diff] [blame] | 62 | <version>${spring.version}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.springframework</groupId> |
| 66 | <artifactId>spring-web</artifactId> |
root | fe744e9 | 2018-11-11 21:56:44 -0500 | [diff] [blame] | 67 | <version>${spring.version}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.springframework</groupId> |
| 71 | <artifactId>spring-webmvc</artifactId> |
root | fe744e9 | 2018-11-11 21:56:44 -0500 | [diff] [blame] | 72 | <version>${spring.version}</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 73 | </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 Wu | db5e7d5 | 2019-02-11 09:28:25 -0800 | [diff] [blame] | 82 | <version>9.0.14</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 83 | </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 Wu | db5e7d5 | 2019-02-11 09:28:25 -0800 | [diff] [blame] | 92 | <version>4.2.1</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>com.fasterxml.jackson.core</groupId> |
| 96 | <artifactId>jackson-core</artifactId> |
Gary Wu | db5e7d5 | 2019-02-11 09:28:25 -0800 | [diff] [blame] | 97 | <version>2.9.8</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 98 | </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 Wu | db5e7d5 | 2019-02-11 09:28:25 -0800 | [diff] [blame] | 112 | <version>4.5.7</version> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>xerces</groupId> |
| 116 | <artifactId>xercesImpl</artifactId> |
| 117 | <version>2.12.0</version> |
| 118 | </dependency> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 119 | </dependencies> |
| 120 | </dependencyManagement> |
| 121 | </project> |