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 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | Copyright (C) 2017 Amdocs |
| 8 | ================================================================================ |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | you may not use this file except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | ============LICENSE_END========================================================= |
| 21 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 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> |
| 26 | <parent> |
| 27 | <artifactId>appc-design-services</artifactId> |
| 28 | <groupId>org.onap.appc</groupId> |
| 29 | <version>1.3.0-SNAPSHOT</version> |
| 30 | </parent> |
| 31 | <artifactId>appc-design-services-provider</artifactId> |
| 32 | <packaging>bundle</packaging> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 33 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <groupId>org.apache.felix</groupId> |
| 38 | <artifactId>maven-bundle-plugin</artifactId> |
| 39 | <extensions>true</extensions> |
| 40 | <configuration> |
| 41 | <instructions> |
| 42 | <Export-Package>org.onap.appc.design.services</Export-Package> |
| 43 | <Import-Package>org.onap.appc.instar,*;resolution:=optional</Import-Package> |
| 44 | <DynamicImport-Package>*</DynamicImport-Package> |
| 45 | <Embed-Transitive>true</Embed-Transitive> |
| 46 | </instructions> |
| 47 | </configuration> |
| 48 | </plugin> |
| 49 | </plugins> |
| 50 | </build> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 51 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 52 | <dependencies> |
| 53 | <dependency> |
| 54 | <groupId>org.mockito</groupId> |
| 55 | <artifactId>mockito-core</artifactId> |
| 56 | <version>1.9.5</version> |
| 57 | <scope>test</scope> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.onap.appc</groupId> |
| 61 | <artifactId>appc-design-services-model</artifactId> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.onap.appc</groupId> |
| 65 | <artifactId>appc-network-inventory-client-provider</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 70 | <artifactId>sli-provider</artifactId> |
| 71 | </dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 72 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>org.apache.commons</groupId> |
| 75 | <artifactId>commons-lang3</artifactId> |
| 76 | </dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 77 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>junit</groupId> |
| 80 | <artifactId>junit</artifactId> |
| 81 | <scope>test</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.jasypt</groupId> |
| 85 | <artifactId>jasypt</artifactId> |
| 86 | <version>1.9.2</version> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.opendaylight.controller</groupId> |
| 90 | <artifactId>config-api</artifactId> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.opendaylight.controller</groupId> |
| 94 | <artifactId>sal-binding-config</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.opendaylight.controller</groupId> |
| 98 | <artifactId>sal-binding-api</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.opendaylight.controller</groupId> |
| 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> |
| 110 | <artifactId>sal-rest-connector</artifactId> |
| 111 | <groupId>org.opendaylight.netconf</groupId> |
| 112 | <scope>test</scope> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.opendaylight.controller</groupId> |
| 116 | <artifactId>sal-binding-broker-impl</artifactId> |
| 117 | <scope>test</scope> |
| 118 | </dependency> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 119 | |
Dilip kumar Pampana | 38d293d | 2018-01-05 15:37:36 -0500 | [diff] [blame] | 120 | <dependency> |
| 121 | <groupId>com.att.eelf</groupId> |
| 122 | <artifactId>eelf-core</artifactId> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 126 | <artifactId>sql-resource-provider</artifactId> |
| 127 | <version>${ccsdk.sli.adaptors.version}</version> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 131 | <artifactId>sli-provider</artifactId> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>com.sun.jersey</groupId> |
| 135 | <artifactId>jersey-client</artifactId> |
| 136 | <version>1.17</version> |
| 137 | <scope>provided</scope> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 141 | <artifactId>sli-common</artifactId> |
| 142 | </dependency> |
| 143 | <dependency> |
| 144 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 145 | <artifactId>jackson-dataformat-yaml</artifactId> |
| 146 | <version>2.3.0</version> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>com.fasterxml.jackson.core</groupId> |
| 150 | <artifactId>jackson-databind</artifactId> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>org.apache.commons</groupId> |
| 154 | <artifactId>commons-lang3</artifactId> |
| 155 | </dependency> |
| 156 | <dependency> |
| 157 | <groupId>org.apache.velocity</groupId> |
| 158 | <artifactId>velocity</artifactId> |
| 159 | <version>1.7</version> |
| 160 | </dependency> |
| 161 | <dependency> |
| 162 | <groupId>commons-io</groupId> |
| 163 | <artifactId>commons-io</artifactId> |
| 164 | </dependency> |
| 165 | <dependency> |
| 166 | <groupId>org.powermock</groupId> |
| 167 | <artifactId>powermock-module-junit4-rule-agent</artifactId> |
| 168 | <version>1.6.5</version> |
| 169 | <scope>test</scope> |
| 170 | </dependency> |
| 171 | <dependency> |
| 172 | <groupId>org.powermock</groupId> |
| 173 | <artifactId>powermock-api-mockito-common</artifactId> |
| 174 | <version>1.6.5</version> |
| 175 | </dependency> |
| 176 | </dependencies> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 177 | </project> |