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