Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
Patrick Brady | 13c0353 | 2019-02-22 13:37:19 -0800 | [diff] [blame] | 6 | Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 7 | Copyright (C) 2017 Amdocs |
Dilip kumar Pampana | bfbb6d5 | 2018-07-30 16:41:19 -0400 | [diff] [blame] | 8 | Modification Copyright (C) 2018 IBM |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 9 | ================================================================================ |
| 10 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | you may not use this file except in compliance with the License. |
| 12 | You may obtain a copy of the License at |
| 13 | |
| 14 | http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | |
| 16 | Unless required by applicable law or agreed to in writing, software |
| 17 | distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | See the License for the specific language governing permissions and |
| 20 | limitations under the License. |
| 21 | ============LICENSE_END========================================================= |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 22 | --> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
Patrick Brady | ca4f7e1 | 2018-08-13 22:38:26 -0700 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.appc.parent</groupId> |
| 28 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 19ae780 | 2019-01-08 12:25:10 -0800 | [diff] [blame] | 29 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | ca4f7e1 | 2018-08-13 22:38:26 -0700 | [diff] [blame] | 30 | <relativePath /> |
| 31 | </parent> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 32 | <groupId>org.onap.appc</groupId> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 33 | <artifactId>appc-design-services-provider</artifactId> |
| 34 | <packaging>bundle</packaging> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 35 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 36 | <build> |
| 37 | <plugins> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>maven-bundle-plugin</artifactId> |
| 41 | <extensions>true</extensions> |
| 42 | <configuration> |
| 43 | <instructions> |
| 44 | <Export-Package>org.onap.appc.design.services</Export-Package> |
| 45 | <Import-Package>org.onap.appc.instar,*;resolution:=optional</Import-Package> |
| 46 | <DynamicImport-Package>*</DynamicImport-Package> |
| 47 | <Embed-Transitive>true</Embed-Transitive> |
| 48 | </instructions> |
| 49 | </configuration> |
| 50 | </plugin> |
| 51 | </plugins> |
| 52 | </build> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 53 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 54 | <dependencies> |
| 55 | <dependency> |
| 56 | <groupId>org.mockito</groupId> |
Dilip kumar Pampana | bfbb6d5 | 2018-07-30 16:41:19 -0400 | [diff] [blame] | 57 | <artifactId>mockito-core</artifactId> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
Joss Armstrong | 567a72b | 2019-03-05 14:18:59 +0000 | [diff] [blame^] | 61 | <groupId>org.javassist</groupId> |
| 62 | <artifactId>javassist</artifactId> |
| 63 | <version>3.22.0-GA</version> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
| 66 | <dependency> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 67 | <groupId>org.onap.appc</groupId> |
| 68 | <artifactId>appc-design-services-model</artifactId> |
Patrick Brady | ca4f7e1 | 2018-08-13 22:38:26 -0700 | [diff] [blame] | 69 | <version>${project.version}</version> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.appc</groupId> |
| 73 | <artifactId>appc-network-inventory-client-provider</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 78 | <artifactId>sli-provider</artifactId> |
| 79 | </dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 80 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>org.apache.commons</groupId> |
| 83 | <artifactId>commons-lang3</artifactId> |
| 84 | </dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 85 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 86 | <dependency> |
| 87 | <groupId>junit</groupId> |
| 88 | <artifactId>junit</artifactId> |
| 89 | <scope>test</scope> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.jasypt</groupId> |
| 93 | <artifactId>jasypt</artifactId> |
| 94 | <version>1.9.2</version> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.opendaylight.controller</groupId> |
| 98 | <artifactId>config-api</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.opendaylight.controller</groupId> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 102 | <artifactId>sal-common-util</artifactId> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <artifactId>sal-test-model</artifactId> |
| 106 | <groupId>org.opendaylight.controller</groupId> |
| 107 | <scope>test</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 110 | <groupId>org.opendaylight.controller</groupId> |
| 111 | <artifactId>sal-binding-broker-impl</artifactId> |
| 112 | <scope>test</scope> |
| 113 | </dependency> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 114 | <dependency> |
| 115 | <groupId>ch.qos.logback</groupId> |
| 116 | <artifactId>logback-classic</artifactId> |
| 117 | <version>${logback.version}</version> |
| 118 | </dependency> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 119 | <dependency> |
| 120 | <groupId>com.att.eelf</groupId> |
| 121 | <artifactId>eelf-core</artifactId> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 122 | <exclusions> |
| 123 | <exclusion> |
| 124 | <groupId>ch.qos.logback</groupId> |
| 125 | <artifactId>logback-classic</artifactId> |
| 126 | </exclusion> |
| 127 | </exclusions> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 131 | <artifactId>sql-resource-provider</artifactId> |
| 132 | <version>${ccsdk.sli.adaptors.version}</version> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 136 | <artifactId>sli-provider</artifactId> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>com.sun.jersey</groupId> |
| 140 | <artifactId>jersey-client</artifactId> |
| 141 | <version>1.17</version> |
| 142 | <scope>provided</scope> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 146 | <artifactId>sli-common</artifactId> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 150 | <artifactId>jackson-dataformat-yaml</artifactId> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>com.fasterxml.jackson.core</groupId> |
| 154 | <artifactId>jackson-databind</artifactId> |
| 155 | </dependency> |
| 156 | <dependency> |
Patrick Brady | bfef95f | 2018-09-11 11:47:59 -0700 | [diff] [blame] | 157 | <groupId>com.fasterxml.jackson.core</groupId> |
| 158 | <artifactId>jackson-core</artifactId> |
| 159 | </dependency> |
| 160 | <dependency> |
| 161 | <groupId>org.yaml</groupId> |
| 162 | <artifactId>snakeyaml</artifactId> |
| 163 | </dependency> |
| 164 | <dependency> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 165 | <groupId>org.apache.commons</groupId> |
| 166 | <artifactId>commons-lang3</artifactId> |
| 167 | </dependency> |
| 168 | <dependency> |
| 169 | <groupId>org.apache.velocity</groupId> |
| 170 | <artifactId>velocity</artifactId> |
| 171 | <version>1.7</version> |
Taka Cho | ff286ea | 2018-02-23 21:30:06 -0500 | [diff] [blame] | 172 | <exclusions> |
| 173 | <exclusion> |
| 174 | <artifactId>commons-collections</artifactId> |
| 175 | <groupId>commons-collections</groupId> |
| 176 | </exclusion> |
| 177 | </exclusions> |
| 178 | </dependency> |
| 179 | <dependency> |
| 180 | <groupId>commons-collections</groupId> |
| 181 | <artifactId>commons-collections</artifactId> |
| 182 | <version>3.2.2</version> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>commons-io</groupId> |
| 186 | <artifactId>commons-io</artifactId> |
| 187 | </dependency> |
| 188 | <dependency> |
| 189 | <groupId>org.powermock</groupId> |
| 190 | <artifactId>powermock-module-junit4-rule-agent</artifactId> |
| 191 | <version>1.6.5</version> |
| 192 | <scope>test</scope> |
| 193 | </dependency> |
| 194 | <dependency> |
| 195 | <groupId>org.powermock</groupId> |
| 196 | <artifactId>powermock-api-mockito-common</artifactId> |
| 197 | <version>1.6.5</version> |
| 198 | </dependency> |
| 199 | </dependencies> |
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame] | 200 | <version>1.5.0-SNAPSHOT</version> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 201 | </project> |
Dilip kumar Pampana | bfbb6d5 | 2018-07-30 16:41:19 -0400 | [diff] [blame] | 202 | |