Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian Freeman | bedb484 | 2019-11-01 08:48:01 -0500 | [diff] [blame] | 3 | Copyright (c) 2018-2019 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>oparent</artifactId> |
Pamela Dragosh | de49777 | 2020-04-20 12:52:50 -0400 | [diff] [blame] | 22 | <version>3.1.0-SNAPSHOT</version> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 23 | <relativePath>../oparent</relativePath> |
| 24 | </parent> |
| 25 | <artifactId>dependencies-clm</artifactId> |
| 26 | <name>oparent/dependencies-clm</name> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 27 | <packaging>pom</packaging> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 28 | <dependencies> |
| 29 | <dependency> |
| 30 | <groupId>com.google.guava</groupId> |
| 31 | <artifactId>guava</artifactId> |
| 32 | </dependency> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 33 | <dependency> |
| 34 | <groupId>org.eclipse.jetty</groupId> |
| 35 | <artifactId>jetty-http</artifactId> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.eclipse.jetty</groupId> |
| 39 | <artifactId>jetty-servlet</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.eclipse.jetty</groupId> |
Pamela Dragosh | 1ad6abf | 2020-05-12 10:49:53 -0400 | [diff] [blame^] | 43 | <artifactId>jetty-servlets</artifactId> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.eclipse.jetty</groupId> |
Gary Wu | df9b15a | 2018-09-12 15:11:04 -0700 | [diff] [blame] | 47 | <artifactId>jetty-server</artifactId> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.springframework</groupId> |
| 51 | <artifactId>spring-core</artifactId> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.springframework</groupId> |
| 55 | <artifactId>spring-expression</artifactId> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.springframework</groupId> |
| 59 | <artifactId>spring-web</artifactId> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.springframework</groupId> |
| 63 | <artifactId>spring-webmvc</artifactId> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>commons-beanutils</groupId> |
| 67 | <artifactId>commons-beanutils</artifactId> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.tomcat.embed</groupId> |
| 71 | <artifactId>tomcat-embed-core</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.codehaus.jackson</groupId> |
| 75 | <artifactId>jackson-mapper-asl</artifactId> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.webjars</groupId> |
| 79 | <artifactId>bootstrap</artifactId> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>com.fasterxml.jackson.core</groupId> |
| 83 | <artifactId>jackson-core</artifactId> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>org.webjars</groupId> |
| 87 | <artifactId>jquery</artifactId> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>ch.qos.logback</groupId> |
| 91 | <artifactId>logback-classic</artifactId> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.apache.httpcomponents</groupId> |
| 95 | <artifactId>httpclient</artifactId> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>xerces</groupId> |
| 99 | <artifactId>xercesImpl</artifactId> |
| 100 | </dependency> |
Pamela Dragosh | 3d0fef4 | 2018-08-23 13:38:15 -0400 | [diff] [blame] | 101 | </dependencies> |
| 102 | </project> |