blob: 75d4fb09ad22cdcb0cd6fdfadb409f6f3fbb8e90 [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 ================================================================================
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
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
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.
21
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>
Patrick Brady57b5eef2017-02-10 15:00:49 -080029 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080030 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080031 <artifactId>appc-dispatcher-common</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080032 <version>1.3.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080033 </parent>
Patrick Brady57b5eef2017-02-10 15:00:49 -080034
Anand36bcd562018-01-04 19:35:51 -050035 <artifactId>execution-queue-management-lib</artifactId>
36 <packaging>bundle</packaging>
37 <name>APPC Dispatcher Common - Qxecution Queue Mgmt lib</name>
38 <url>http://maven.apache.org</url>
Patrick Brady57b5eef2017-02-10 15:00:49 -080039
Anand36bcd562018-01-04 19:35:51 -050040 <properties>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42 </properties>
Patrick Brady57b5eef2017-02-10 15:00:49 -080043
Anand36bcd562018-01-04 19:35:51 -050044 <dependencies>
Patrick Brady57b5eef2017-02-10 15:00:49 -080045 <dependency>
Anand36bcd562018-01-04 19:35:51 -050046 <groupId>org.onap.appc</groupId>
47 <artifactId>appc-common</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>com.att.eelf</groupId>
52 <artifactId>eelf-core</artifactId>
53 </dependency>
54 </dependencies>
Patrick Bradyc7d00752017-06-01 10:45:37 -070055
Anand36bcd562018-01-04 19:35:51 -050056 <build>
Patrick Brady57b5eef2017-02-10 15:00:49 -080057 <plugins>
58 <plugin>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>maven-bundle-plugin</artifactId>
61 <configuration>
62 <instructions>
63 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
64 <Bundle-Version>${project.version}</Bundle-Version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080065 <Embed-Transitive>true</Embed-Transitive>
Anand36bcd562018-01-04 19:35:51 -050066 <Export-Package>
67 org.onap.appc.executionqueue,org.onap.appc.executionqueue.impl
68 </Export-Package>
Patrick Bradyc7d00752017-06-01 10:45:37 -070069 <Import-Package>
70 *;resolution:=optional
71 </Import-Package>
Patrick Brady57b5eef2017-02-10 15:00:49 -080072 </instructions>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
77</project>