Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [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 | a802739 | 2018-06-13 15:49:08 -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 |
| 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========================================================= |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 21 | --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 22 | <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/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 25 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 26 | <artifactId>appc-dg-shared</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 27 | <version>1.4.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 28 | </parent> |
| 29 | <artifactId>appc-dg-common</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <dependencies> |
| 33 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 34 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 35 | <artifactId>appc-common</artifactId> |
| 36 | <version>${project.version}</version> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 37 | <!-- TODO: WA for fixing build, clueanup dependency tree --> |
| 38 | <exclusions> |
| 39 | <exclusion> |
| 40 | <groupId>equinoxSDK381</groupId> |
| 41 | <artifactId>org.eclipse.osgi</artifactId> |
| 42 | </exclusion> |
| 43 | </exclusions> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 44 | </dependency> |
| 45 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 46 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 47 | <artifactId>appc-message-adapter-api</artifactId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 48 | <version>${project.version}</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 49 | <scope>provided</scope> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 50 | <!-- TODO: WA for fixing build, clueanup dependency tree --> |
| 51 | <exclusions> |
| 52 | <exclusion> |
| 53 | <groupId>equinoxSDK381</groupId> |
| 54 | <artifactId>org.eclipse.osgi</artifactId> |
| 55 | </exclusion> |
| 56 | </exclusions> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 59 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 60 | <artifactId>appc-message-adapter-factory</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | <scope>provided</scope> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 63 | <!-- TODO: WA for fixing build, clueanup dependency tree --> |
| 64 | <exclusions> |
| 65 | <exclusion> |
| 66 | <groupId>equinoxSDK381</groupId> |
| 67 | <artifactId>org.eclipse.osgi</artifactId> |
| 68 | </exclusion> |
| 69 | </exclusions> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 70 | </dependency> |
| 71 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 72 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 73 | <artifactId>sli-common</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 74 | <scope>provided</scope> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 75 | <!-- TODO: WA for fixing build, clueanup dependency tree --> |
| 76 | <exclusions> |
| 77 | <exclusion> |
| 78 | <groupId>equinoxSDK381</groupId> |
| 79 | <artifactId>org.eclipse.osgi</artifactId> |
| 80 | </exclusion> |
| 81 | </exclusions> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 84 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 85 | <artifactId>sli-provider</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 86 | <scope>provided</scope> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 87 | <!-- TODO: WA for fixing build, clueanup dependency tree --> |
| 88 | <exclusions> |
| 89 | <exclusion> |
| 90 | <groupId>equinoxSDK381</groupId> |
| 91 | <artifactId>org.eclipse.osgi</artifactId> |
| 92 | </exclusion> |
| 93 | </exclusions> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>junit</groupId> |
| 97 | <artifactId>junit</artifactId> |
| 98 | <scope>test</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.mockito</groupId> |
| 102 | <artifactId>mockito-core</artifactId> |
| 103 | <scope>test</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.powermock</groupId> |
| 107 | <artifactId>powermock-api-mockito</artifactId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 108 | <scope>test</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.powermock</groupId> |
| 112 | <artifactId>powermock-module-junit4</artifactId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 113 | <scope>test</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.powermock</groupId> |
| 117 | <artifactId>powermock-api-easymock</artifactId> |
| 118 | <version>1.6.2</version> |
| 119 | </dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 120 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 121 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 122 | <artifactId>appc-dg-dependency-model</artifactId> |
| 123 | <version>${project.version}</version> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 124 | <!-- TODO: WA for fixing build, clueanup dependency tree --> |
| 125 | <exclusions> |
| 126 | <exclusion> |
| 127 | <groupId>equinoxSDK381</groupId> |
| 128 | <artifactId>org.eclipse.osgi</artifactId> |
| 129 | </exclusion> |
| 130 | </exclusions> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 131 | </dependency> |
| 132 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 133 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 134 | <artifactId>appc-ranking-framework-lib</artifactId> |
| 135 | <version>${project.version}</version> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 136 | <!-- TODO: WA for fixing build, clueanup dependency tree --> |
| 137 | <exclusions> |
| 138 | <exclusion> |
| 139 | <groupId>equinoxSDK381</groupId> |
| 140 | <artifactId>org.eclipse.osgi</artifactId> |
| 141 | </exclusion> |
| 142 | </exclusions> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 143 | </dependency> |
| 144 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 145 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 146 | <artifactId>appc-data-access-lib</artifactId> |
| 147 | <version>${project.version}</version> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 148 | <!-- TODO: WA for fixing build, clueanup dependency tree --> |
| 149 | <exclusions> |
| 150 | <exclusion> |
| 151 | <groupId>equinoxSDK381</groupId> |
| 152 | <artifactId>org.eclipse.osgi</artifactId> |
| 153 | </exclusion> |
| 154 | </exclusions> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 155 | </dependency> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 156 | <!-- TODO: WA for fixing build, clueanup dependency tree --> |
| 157 | <!--<dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 158 | <groupId>equinoxSDK381</groupId> |
| 159 | <artifactId>org.eclipse.osgi</artifactId> |
| 160 | <scope>test</scope> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 161 | </dependency>--> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 162 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 163 | <groupId>org.onap.appc</groupId> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 164 | <artifactId>appc-dg-mdsal-bundle</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 165 | <version>${project.version}</version> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 166 | <!-- TODO: WA for fixing build, clueanup dependency tree --> |
| 167 | <exclusions> |
| 168 | <exclusion> |
| 169 | <groupId>equinoxSDK381</groupId> |
| 170 | <artifactId>org.eclipse.osgi</artifactId> |
| 171 | </exclusion> |
| 172 | </exclusions> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 173 | </dependency> |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 174 | <dependency> |
| 175 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 176 | <artifactId>jackson-dataformat-yaml</artifactId> |
| 177 | <version>${jackson-yaml-version}</version> |
| 178 | </dependency> |
| 179 | <dependency> |
| 180 | <groupId>com.fasterxml.jackson.core</groupId> |
| 181 | <artifactId>jackson-annotations</artifactId> |
| 182 | <version>${jackson-yaml-version}</version> |
| 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>com.fasterxml.jackson.core</groupId> |
| 186 | <artifactId>jackson-databind</artifactId> |
| 187 | <version>${jackson-yaml-version}</version> |
| 188 | </dependency> |
| 189 | <dependency> |
| 190 | <groupId>com.fasterxml.jackson.core</groupId> |
| 191 | <artifactId>jackson-core</artifactId> |
| 192 | <version>${jackson-yaml-version}</version> |
| 193 | </dependency> |
| 194 | <dependency> |
| 195 | <groupId>org.yaml</groupId> |
| 196 | <artifactId>snakeyaml</artifactId> |
| 197 | <version>${snakeyaml.version}</version> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 198 | </dependency> |
| 199 | <dependency> |
| 200 | <groupId>commons-lang</groupId> |
| 201 | <artifactId>commons-lang</artifactId> |
| 202 | <scope>compile</scope> |
| 203 | </dependency> |
Tomek Kaminski | 0005992 | 2018-01-17 12:56:47 +0100 | [diff] [blame] | 204 | </dependencies> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 205 | |
| 206 | <build> |
| 207 | <plugins> |
| 208 | <plugin> |
| 209 | <groupId>org.apache.felix</groupId> |
| 210 | <artifactId>maven-bundle-plugin</artifactId> |
| 211 | <extensions>true</extensions> |
| 212 | <configuration> |
| 213 | <instructions> |
| 214 | <Bundle-SymbolicName>appc-dg-common</Bundle-SymbolicName> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 215 | <Export-Package>org.onap.appc.dg.common,org.onap.appc.dg.common.objects,org.onap.appc.dg.common.utils</Export-Package> |
| 216 | <Private-Package>org.onap.appc.dg.common.impl.*</Private-Package> |
| 217 | <Import-Package>org.onap.appc.adapter.message.*,org.onap.appc.adapter.factory.*,org.onap.appc.adapter.messaging.*, |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 218 | *;resolution:=optional</Import-Package> |
Patrick Brady | 1e4afc2 | 2018-05-15 12:12:41 -0700 | [diff] [blame] | 219 | <Embed-Dependency>appc-dg-mdsal-bundle,appc-dg-domain-model-lib,appc-dg-dependency-model,jackson-dataformat-yaml,jackson-databind,jackson-core,jackson-annotations;scope=compile|runtime;inline=false;artifactId=!org.eclipse.osgi</Embed-Dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 220 | |
| 221 | <!--Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency--> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 222 | <Embed-Transitive>true</Embed-Transitive> |
| 223 | </instructions> |
| 224 | </configuration> |
| 225 | </plugin> |
| 226 | </plugins> |
| 227 | </build> |
| 228 | </project> |