Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 8c4b89b | 2018-01-12 09:24:03 -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 | 8c4b89b | 2018-01-12 09:24:03 -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 | 8c4b89b | 2018-01-12 09:24:03 -0600 | [diff] [blame] | 21 | --> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [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 | 7f383f9 | 2018-07-30 14:35:31 -0700 | [diff] [blame] | 25 | <groupId>org.onap.appc.parent</groupId> |
| 26 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 19ae780 | 2019-01-08 12:25:10 -0800 | [diff] [blame] | 27 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 7f383f9 | 2018-07-30 14:35:31 -0700 | [diff] [blame] | 28 | <relativePath /> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 29 | </parent> |
| 30 | |
Patrick Brady | 7f383f9 | 2018-07-30 14:35:31 -0700 | [diff] [blame] | 31 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 32 | <artifactId>appc-message-adapter-api</artifactId> |
| 33 | <packaging>bundle</packaging> |
| 34 | <name>appc-message-adapter-api</name> |
| 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 38 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 39 | <artifactId>appc-metric-bundle</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 43 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 46f865c | 2018-08-13 10:00:29 -0700 | [diff] [blame] | 44 | <artifactId>appc-common-bundle</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | |
| 48 | <dependency> |
| 49 | <groupId>junit</groupId> |
| 50 | <artifactId>junit</artifactId> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 55 | <groupId>commons-codec</groupId> |
| 56 | <artifactId>commons-codec</artifactId> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>commons-lang</groupId> |
| 61 | <artifactId>commons-lang</artifactId> |
| 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
| 65 | <groupId>com.fasterxml.jackson.core</groupId> |
| 66 | <artifactId>jackson-databind</artifactId> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>com.fasterxml.jackson.core</groupId> |
| 70 | <artifactId>jackson-core</artifactId> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>com.fasterxml.jackson.core</groupId> |
| 74 | <artifactId>jackson-annotations</artifactId> |
| 75 | </dependency> |
| 76 | |
| 77 | <dependency> |
| 78 | <groupId>org.mockito</groupId> |
| 79 | <artifactId>mockito-core</artifactId> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
Patrick Brady | 13c0353 | 2019-02-22 13:37:19 -0800 | [diff] [blame] | 83 | <groupId>org.osgi</groupId> |
| 84 | <artifactId>org.osgi.core</artifactId> |
| 85 | <scope>provided</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 88 | <groupId>org.powermock</groupId> |
| 89 | <artifactId>powermock-api-mockito</artifactId> |
| 90 | <scope>test</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.hamcrest</groupId> |
| 94 | <artifactId>hamcrest-core</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.objenesis</groupId> |
| 98 | <artifactId>objenesis</artifactId> |
| 99 | <version>2.2</version> |
| 100 | </dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 101 | |
| 102 | <dependency> |
| 103 | <groupId>org.powermock</groupId> |
| 104 | <artifactId>powermock-module-junit4</artifactId> |
| 105 | <scope>test</scope> |
| 106 | </dependency> |
| 107 | |
| 108 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 109 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 110 | <artifactId>sli-common</artifactId> |
| 111 | <scope>compile</scope> |
| 112 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 113 | <exclusions> |
| 114 | <exclusion> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 115 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 116 | <artifactId>dblib-provider</artifactId> |
| 117 | </exclusion> |
| 118 | </exclusions> |
| 119 | </dependency> |
| 120 | |
| 121 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 122 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 123 | <artifactId>sli-provider</artifactId> |
| 124 | <scope>compile</scope> |
| 125 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 126 | <exclusions> |
| 127 | <exclusion> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 128 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 129 | <artifactId>dblib-provider</artifactId> |
| 130 | </exclusion> |
| 131 | </exclusions> |
| 132 | </dependency> |
| 133 | |
| 134 | </dependencies> |
| 135 | |
| 136 | <build> |
| 137 | <plugins> |
| 138 | <plugin> |
| 139 | <groupId>org.apache.felix</groupId> |
| 140 | <artifactId>maven-bundle-plugin</artifactId> |
| 141 | <extensions>true</extensions> |
| 142 | <configuration> |
| 143 | <instructions> |
| 144 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 145 | <Bundle-Version>${project.version}</Bundle-Version> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 146 | <Export-Package>org.onap.appc.adapter.message.*</Export-Package> |
| 147 | <!--<Export-Serice>org.onap.appc.adapter.message.EventSender</Export-Serice>--> |
Balaji, Ramya (rb111y) | d7175fb | 2019-01-03 16:15:00 -0500 | [diff] [blame] | 148 | <Import-Package>org.w3c.*,org.onap.appc.metricservice.*,com.att.nsa.*,org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,!org.osgi.service.event.*,org.osgi.service.*,org.osgi.util.*,com.vmware.*,org.apache.xerces.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.*,javax.naming.*,javax.crypto.*, com.sun.jersey.spi.container.servlet,org.eclipse.jetty.servlets</Import-Package> |
Ryan Young | 7b632b4 | 2018-08-23 13:35:03 -0400 | [diff] [blame] | 149 | <!--<Embed-Dependency>appc-common-bundle</Embed-Dependency>--> |
Patrick Brady | ac62a4a | 2017-09-13 00:11:21 -0700 | [diff] [blame] | 150 | <Embed-Dependency>*;scope=compile|runtime;artifactId=!appc-metric-bundle|sli-common|sli-provider|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis|pax-*</Embed-Dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 151 | <Embed-Transitive>true</Embed-Transitive> |
| 152 | <Bundle-Blueprint>OSGI-INF/blueprint/blueprint.xml</Bundle-Blueprint> |
| 153 | </instructions> |
| 154 | </configuration> |
| 155 | </plugin> |
| 156 | </plugins> |
| 157 | </build> |
Patrick Brady | ed1cf1f | 2019-04-26 12:36:25 -0700 | [diff] [blame^] | 158 | <version>1.6.0-SNAPSHOT</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 159 | </project> |