Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Kalpesh Chaniyara | 17c829c | 2017-08-28 17:10:55 +0530 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
John McClung | fb3eec2 | 2018-06-14 10:17:19 -0400 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Kalpesh Chaniyara | 17c829c | 2017-08-28 17:10:55 +0530 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Copyright (C) 2017 Amdocs |
| 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 | |
Kalpesh Chaniyara | 17c829c | 2017-08-28 17:10:55 +0530 | [diff] [blame] | 22 | ============LICENSE_END========================================================= |
| 23 | --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 24 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Hao Kuang | 78f4599 | 2017-09-27 21:26:02 +0000 | [diff] [blame] | 25 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <parent> |
Ryan Young | b7c21e1 | 2018-08-13 22:37:11 -0400 | [diff] [blame] | 28 | <groupId>org.onap.appc.parent</groupId> |
| 29 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 19ae780 | 2019-01-08 12:25:10 -0800 | [diff] [blame^] | 30 | <version>1.5.0-SNAPSHOT</version> |
Ryan Young | b7c21e1 | 2018-08-13 22:37:11 -0400 | [diff] [blame] | 31 | <relativePath/> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 32 | </parent> |
Ryan Young | b7c21e1 | 2018-08-13 22:37:11 -0400 | [diff] [blame] | 33 | |
| 34 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 35 | <artifactId>appc-provider-bundle</artifactId> |
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame] | 36 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 37 | <packaging>bundle</packaging> |
Ryan Young | b7c21e1 | 2018-08-13 22:37:11 -0400 | [diff] [blame] | 38 | |
| 39 | <name>appc-provider-bundle</name> |
| 40 | <description>appc-provider OSGI bundle</description> |
| 41 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>maven-bundle-plugin</artifactId> |
| 47 | <extensions>true</extensions> |
| 48 | <configuration> |
| 49 | <instructions> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 50 | <Export-Package>org.onap.appc.provider</Export-Package> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 51 | <Import-Package> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 52 | org.onap.appc.domainmodel.lcm, |
| 53 | org.onap.appc.i18n, |
| 54 | org.onap.appc.logging, |
| 55 | org.onap.appc.util, |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 56 | com.att.eelf.configuration, |
| 57 | com.att.eelf.i18n, |
| 58 | *;resolution:=optional |
| 59 | </Import-Package> |
| 60 | <Embed-Dependency> |
Ryan Young | 7b632b4 | 2018-08-23 13:35:03 -0400 | [diff] [blame] | 61 | org.apache.http;scope=compile|runtime;inline=false |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 62 | </Embed-Dependency> |
| 63 | <Embed-Transitive>true</Embed-Transitive> |
| 64 | </instructions> |
| 65 | </configuration> |
| 66 | </plugin> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 67 | </plugins> |
| 68 | <pluginManagement> |
| 69 | <plugins> |
| 70 | <!--This plugin's configuration is used to store Eclipse |
| 71 | m2e settings only. It has no influence on the Maven build itself. --> |
| 72 | <plugin> |
| 73 | <groupId>org.eclipse.m2e</groupId> |
| 74 | <artifactId>lifecycle-mapping</artifactId> |
| 75 | <version>1.0.0</version> |
| 76 | <configuration> |
| 77 | <lifecycleMappingMetadata> |
| 78 | <pluginExecutions> |
| 79 | <pluginExecution> |
| 80 | <pluginExecutionFilter> |
| 81 | <groupId>org.codehaus.mojo</groupId> |
| 82 | <artifactId>build-helper-maven-plugin</artifactId> |
| 83 | <versionRange>[1.9.1,)</versionRange> |
| 84 | <goals> |
| 85 | <goal>add-source</goal> |
| 86 | </goals> |
| 87 | </pluginExecutionFilter> |
| 88 | <action> |
Hao Kuang | 78f4599 | 2017-09-27 21:26:02 +0000 | [diff] [blame] | 89 | <ignore/> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 90 | </action> |
| 91 | </pluginExecution> |
| 92 | </pluginExecutions> |
| 93 | </lifecycleMappingMetadata> |
| 94 | </configuration> |
| 95 | </plugin> |
| 96 | </plugins> |
| 97 | </pluginManagement> |
| 98 | </build> |
| 99 | <dependencies> |
| 100 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 101 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 102 | <artifactId>appc-request-handler-api</artifactId> |
| 103 | <version>${project.version}</version> |
| 104 | <type>bundle</type> |
| 105 | <scope>provided</scope> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 106 | </dependency> |
| 107 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 108 | <groupId>org.onap.appc</groupId> |
Ryan Young | b7c21e1 | 2018-08-13 22:37:11 -0400 | [diff] [blame] | 109 | <artifactId>appc-common-bundle</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 110 | <version>${project.version}</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 111 | </dependency> |
| 112 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 113 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 114 | <artifactId>appc-provider-model</artifactId> |
| 115 | <version>${project.version}</version> |
| 116 | </dependency> |
| 117 | |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 118 | <!-- ADDED THIS ARTIFACT TO BE ABLE TO FIND org.onap.appc.domainmodel.lcm --> |
Hao Kuang | 78f4599 | 2017-09-27 21:26:02 +0000 | [diff] [blame] | 119 | <!-- <dependency> --> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 120 | <!-- <groupId>org.onap.appc</groupId> --> |
Hao Kuang | 78f4599 | 2017-09-27 21:26:02 +0000 | [diff] [blame] | 121 | <!-- <artifactId>domain-model-lib</artifactId> --> |
| 122 | <!-- <version>${project.version}</version> --> |
| 123 | <!-- </dependency> --> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 124 | |
| 125 | <dependency> |
| 126 | <groupId>org.opendaylight.controller</groupId> |
| 127 | <artifactId>config-api</artifactId> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.opendaylight.controller</groupId> |
| 131 | <artifactId>sal-binding-config</artifactId> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>org.opendaylight.controller</groupId> |
| 135 | <artifactId>sal-binding-api</artifactId> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>org.opendaylight.controller</groupId> |
| 139 | <artifactId>sal-common-util</artifactId> |
| 140 | </dependency> |
| 141 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 142 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 143 | <artifactId>sli-common</artifactId> |
| 144 | </dependency> |
| 145 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 146 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 147 | <artifactId>sli-provider</artifactId> |
| 148 | </dependency> |
| 149 | <dependency> |
| 150 | <artifactId>sal-test-model</artifactId> |
| 151 | <groupId>org.opendaylight.controller</groupId> |
| 152 | <scope>test</scope> |
| 153 | </dependency> |
| 154 | <dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 155 | <groupId>org.opendaylight.controller</groupId> |
| 156 | <artifactId>sal-binding-broker-impl</artifactId> |
| 157 | <scope>test</scope> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>org.opendaylight.controller</groupId> |
| 161 | <artifactId>sal-binding-broker-impl</artifactId> |
| 162 | <classifier>tests</classifier> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 163 | <type>test-jar</type> |
| 164 | <scope>test</scope> |
| 165 | </dependency> |
| 166 | <dependency> |
| 167 | <groupId>junit</groupId> |
| 168 | <artifactId>junit</artifactId> |
| 169 | <scope>test</scope> |
| 170 | </dependency> |
Hao Kuang | 78f4599 | 2017-09-27 21:26:02 +0000 | [diff] [blame] | 171 | <dependency> |
| 172 | <groupId>org.mockito</groupId> |
| 173 | <artifactId>mockito-core</artifactId> |
| 174 | <scope>test</scope> |
| 175 | </dependency> |
| 176 | <dependency> |
| 177 | <groupId>org.powermock</groupId> |
| 178 | <artifactId>powermock-api-mockito</artifactId> |
| 179 | <scope>test</scope> |
| 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>org.powermock</groupId> |
| 183 | <artifactId>powermock-module-junit4</artifactId> |
| 184 | <scope>test</scope> |
| 185 | </dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 186 | <!-- TEMP CODE --> |
| 187 | <dependency> |
| 188 | <groupId>org.json</groupId> |
| 189 | <artifactId>json</artifactId> |
| 190 | </dependency> |
| 191 | </dependencies> |
Skip Wonnell | eb27ca3 | 2018-01-12 10:17:57 -0600 | [diff] [blame] | 192 | </project> |