Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 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 |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 13 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame^] | 14 | http://www.apache.org/licenses/LICENSE-2.0 |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 15 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame^] | 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. |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 21 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame^] | 22 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 23 | ============LICENSE_END========================================================= |
| 24 | --> |
| 25 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 26 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 27 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <parent> |
| 30 | <groupId>org.onap.appc</groupId> |
| 31 | <artifactId>appc-request-handler</artifactId> |
| 32 | <version>1.3.0-SNAPSHOT</version> |
| 33 | </parent> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 34 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame^] | 35 | <artifactId>appc-request-handler-api</artifactId> |
| 36 | <packaging>bundle</packaging> |
| 37 | <name>APPC Request Handler- API</name> |
| 38 | <url>http://maven.apache.org</url> |
| 39 | |
| 40 | <properties> |
| 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 42 | </properties> |
| 43 | |
| 44 | <dependencies> |
| 45 | <dependency> |
| 46 | <groupId>com.fasterxml.jackson.core</groupId> |
| 47 | <artifactId>jackson-annotations</artifactId> |
| 48 | </dependency> |
| 49 | |
| 50 | <dependency> |
| 51 | <groupId>org.onap.appc</groupId> |
| 52 | <artifactId>appc-data-access-lib</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.onap.appc</groupId> |
| 57 | <artifactId>appc-command-executor-api</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.onap.appc</groupId> |
| 62 | <artifactId>appc-common</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | </dependency> |
| 65 | </dependencies> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 66 | <build> |
| 67 | <plugins> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.felix</groupId> |
| 70 | <artifactId>maven-bundle-plugin</artifactId> |
| 71 | <configuration> |
| 72 | <instructions> |
| 73 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 74 | <Bundle-Version>${project.version}</Bundle-Version> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame^] | 75 | <Export-Package> |
| 76 | org.onap.appc.requesthandler,org.onap.appc.requesthandler.objects,org.onap.appc.transactionrecorder,org.onap.appc.message |
| 77 | </Export-Package> |
| 78 | <Embed-Dependency> |
| 79 | javax.json;scope=compile|runtime;inline=false |
| 80 | </Embed-Dependency> |
| 81 | <Embed-Transitive>true</Embed-Transitive> |
| 82 | <Import-Package> |
| 83 | org.onap.appc.domainmodel.lcm, |
| 84 | *;resolution:=optional |
| 85 | </Import-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 86 | </instructions> |
| 87 | </configuration> |
| 88 | </plugin> |
| 89 | </plugins> |
| 90 | </build> |
| 91 | </project> |