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 | ================================================================================ |
John McClung | 3a78edb | 2018-06-13 17:17:15 -0400 | [diff] [blame] | 6 | Copyright (C) 2017-2018 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> |
| 29 | <version>1.4.0-SNAPSHOT</version> |
| 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> |
| 61 | <groupId>org.onap.appc</groupId> |
| 62 | <artifactId>appc-design-services-model</artifactId> |
Patrick Brady | ca4f7e1 | 2018-08-13 22:38:26 -0700 | [diff] [blame] | 63 | <version>${project.version}</version> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.onap.appc</groupId> |
| 67 | <artifactId>appc-network-inventory-client-provider</artifactId> |
| 68 | <version>${project.version}</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 72 | <artifactId>sli-provider</artifactId> |
| 73 | </dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 74 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 75 | <dependency> |
| 76 | <groupId>org.apache.commons</groupId> |
| 77 | <artifactId>commons-lang3</artifactId> |
| 78 | </dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 79 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 80 | <dependency> |
| 81 | <groupId>junit</groupId> |
| 82 | <artifactId>junit</artifactId> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>org.jasypt</groupId> |
| 87 | <artifactId>jasypt</artifactId> |
| 88 | <version>1.9.2</version> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>org.opendaylight.controller</groupId> |
| 92 | <artifactId>config-api</artifactId> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.opendaylight.controller</groupId> |
| 96 | <artifactId>sal-binding-config</artifactId> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.opendaylight.controller</groupId> |
| 100 | <artifactId>sal-binding-api</artifactId> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.opendaylight.controller</groupId> |
| 104 | <artifactId>sal-common-util</artifactId> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <artifactId>sal-test-model</artifactId> |
| 108 | <groupId>org.opendaylight.controller</groupId> |
| 109 | <scope>test</scope> |
| 110 | </dependency> |
| 111 | <dependency> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 112 | <groupId>org.opendaylight.controller</groupId> |
| 113 | <artifactId>sal-binding-broker-impl</artifactId> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame^] | 116 | <dependency> |
| 117 | <groupId>ch.qos.logback</groupId> |
| 118 | <artifactId>logback-classic</artifactId> |
| 119 | <version>${logback.version}</version> |
| 120 | </dependency> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 121 | <dependency> |
| 122 | <groupId>com.att.eelf</groupId> |
| 123 | <artifactId>eelf-core</artifactId> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame^] | 124 | <exclusions> |
| 125 | <exclusion> |
| 126 | <groupId>ch.qos.logback</groupId> |
| 127 | <artifactId>logback-classic</artifactId> |
| 128 | </exclusion> |
| 129 | </exclusions> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 133 | <artifactId>sql-resource-provider</artifactId> |
| 134 | <version>${ccsdk.sli.adaptors.version}</version> |
| 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 138 | <artifactId>sli-provider</artifactId> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>com.sun.jersey</groupId> |
| 142 | <artifactId>jersey-client</artifactId> |
| 143 | <version>1.17</version> |
| 144 | <scope>provided</scope> |
| 145 | </dependency> |
| 146 | <dependency> |
| 147 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 148 | <artifactId>sli-common</artifactId> |
| 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 152 | <artifactId>jackson-dataformat-yaml</artifactId> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>com.fasterxml.jackson.core</groupId> |
| 156 | <artifactId>jackson-databind</artifactId> |
| 157 | </dependency> |
| 158 | <dependency> |
Patrick Brady | bfef95f | 2018-09-11 11:47:59 -0700 | [diff] [blame] | 159 | <groupId>com.fasterxml.jackson.core</groupId> |
| 160 | <artifactId>jackson-core</artifactId> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>org.yaml</groupId> |
| 164 | <artifactId>snakeyaml</artifactId> |
| 165 | </dependency> |
| 166 | <dependency> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 167 | <groupId>org.apache.commons</groupId> |
| 168 | <artifactId>commons-lang3</artifactId> |
| 169 | </dependency> |
| 170 | <dependency> |
| 171 | <groupId>org.apache.velocity</groupId> |
| 172 | <artifactId>velocity</artifactId> |
| 173 | <version>1.7</version> |
Taka Cho | ff286ea | 2018-02-23 21:30:06 -0500 | [diff] [blame] | 174 | <exclusions> |
| 175 | <exclusion> |
| 176 | <artifactId>commons-collections</artifactId> |
| 177 | <groupId>commons-collections</groupId> |
| 178 | </exclusion> |
| 179 | </exclusions> |
| 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>commons-collections</groupId> |
| 183 | <artifactId>commons-collections</artifactId> |
| 184 | <version>3.2.2</version> |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 185 | </dependency> |
| 186 | <dependency> |
| 187 | <groupId>commons-io</groupId> |
| 188 | <artifactId>commons-io</artifactId> |
| 189 | </dependency> |
| 190 | <dependency> |
| 191 | <groupId>org.powermock</groupId> |
| 192 | <artifactId>powermock-module-junit4-rule-agent</artifactId> |
| 193 | <version>1.6.5</version> |
| 194 | <scope>test</scope> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>org.powermock</groupId> |
| 198 | <artifactId>powermock-api-mockito-common</artifactId> |
| 199 | <version>1.6.5</version> |
| 200 | </dependency> |
| 201 | </dependencies> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 202 | </project> |
Dilip kumar Pampana | bfbb6d5 | 2018-07-30 16:41:19 -0400 | [diff] [blame] | 203 | |