blob: c7fcec90fd8f704b1e40ef184d4b61735c079af6 [file] [log] [blame]
Anand36bcd562018-01-04 19:35:51 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Ryan Youngb6a8ebf2018-05-16 12:40:52 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Anand36bcd562018-01-04 19:35:51 -05007 ================================================================================
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 Brady57b5eef2017-02-10 15:00:49 -080013
Anand36bcd562018-01-04 19:35:51 -050014 http://www.apache.org/licenses/LICENSE-2.0
Patrick Brady57b5eef2017-02-10 15:00:49 -080015
Anand36bcd562018-01-04 19:35:51 -050016 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.
Anand36bcd562018-01-04 19:35:51 -050021 ============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 Brady606d4e72018-08-08 10:25:15 -070027 <parent>
28 <groupId>org.onap.appc.parent</groupId>
29 <artifactId>binding-parent</artifactId>
Patrick Brady9d380082018-10-09 11:32:38 -070030 <version>1.4.0</version>
Patrick Brady606d4e72018-08-08 10:25:15 -070031 <relativePath />
32 </parent>
Patrick Brady57b5eef2017-02-10 15:00:49 -080033
Anand36bcd562018-01-04 19:35:51 -050034 <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 Youngb6a8ebf2018-05-16 12:40:52 -040052 <version>${project.version}</version>
Anand36bcd562018-01-04 19:35:51 -050053 </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 Brady606d4e72018-08-08 10:25:15 -070061 <artifactId>appc-common-bundle</artifactId>
Anand36bcd562018-01-04 19:35:51 -050062 <version>${project.version}</version>
63 </dependency>
64 </dependencies>
Patrick Brady57b5eef2017-02-10 15:00:49 -080065 <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>
Anand36bcd562018-01-04 19:35:51 -050074 <Export-Package>
Ryan Youngb6a8ebf2018-05-16 12:40:52 -040075 org.onap.appc.requesthandler,org.onap.appc.requesthandler.objects,org.onap.appc.message
Anand36bcd562018-01-04 19:35:51 -050076 </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 Brady57b5eef2017-02-10 15:00:49 -080085 </instructions>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
Patrick Brady606d4e72018-08-08 10:25:15 -070090 <groupId>org.onap.appc</groupId>
Patrick Bradyc00a13c2018-12-05 12:28:21 -080091 <version>1.4.4-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080092</project>