blob: 9e8aecd9194d6dfb99ec5feafaee324d2d4b99bc [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell463f70e2018-01-12 10:00:59 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClung3a78edb2018-06-13 17:17:15 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell463f70e2018-01-12 10:00:59 -06007 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 Wonnell463f70e2018-01-12 10:00:59 -060021 -->
Patrick Brady57b5eef2017-02-10 15:00:49 -080022<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
beili.zhoufe0e9892017-08-10 14:54:42 -040024 <parent>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070025 <groupId>org.onap.appc.parent</groupId>
26 <artifactId>binding-parent</artifactId>
Patrick Brady19ae7802019-01-08 12:25:10 -080027 <version>1.5.0-SNAPSHOT</version>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070028 <relativePath />
beili.zhoufe0e9892017-08-10 14:54:42 -040029 </parent>
30
Patrick Brady57b5eef2017-02-10 15:00:49 -080031 <modelVersion>4.0.0</modelVersion>
Patrick Brady57b5eef2017-02-10 15:00:49 -080032 <artifactId>appc-lifecycle-management-core</artifactId>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070033 <groupId>org.onap.appc</groupId>
Patrick Bradyccd67e92018-11-12 12:14:11 -080034 <version>1.5.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080035 <packaging>bundle</packaging>
36
37 <name>appc-lifecycle-management-core Bundle</name>
38 <description>appc-lifecycle-management-core OSGi bundle project.</description>
39
40 <dependencies>
41 <dependency>
Dilip kumar Pampana14ee9cc2018-01-10 10:26:15 -050042 <groupId>junit</groupId>
43 <artifactId>junit</artifactId>
44 </dependency>
45 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080046 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080047 <artifactId>appc-lifecycle-management-api</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080051 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080052 <artifactId>state-machine-lib</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
Patrick Brady28da5022018-09-17 12:52:55 -070056 <groupId>ch.qos.logback</groupId>
57 <artifactId>logback-classic</artifactId>
58 <version>${logback.version}</version>
59 </dependency>
60 <dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080061 <groupId>com.att.eelf</groupId>
62 <artifactId>eelf-core</artifactId>
Patrick Brady28da5022018-09-17 12:52:55 -070063 <exclusions>
64 <exclusion>
65 <groupId>ch.qos.logback</groupId>
66 <artifactId>logback-classic</artifactId>
67 </exclusion>
68 </exclusions>
Patrick Brady57b5eef2017-02-10 15:00:49 -080069 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080070 </dependencies>
71
72 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-bundle-plugin</artifactId>
77 <configuration>
78 <instructions>
79 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
80 <Bundle-Version>${project.version}</Bundle-Version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080081 <Embed-Transitive>true</Embed-Transitive>
Patrick Brady07567592017-12-13 11:09:30 -080082 <Export-Service>org.onap.appc.lifecyclemanager.LifecycleManager</Export-Service>
Patrick Bradyc7d00752017-06-01 10:45:37 -070083 <Import-Package>
Patrick Brady07567592017-12-13 11:09:30 -080084 org.onap.appc.lifecyclemanager.*,
Patrick Bradyc7d00752017-06-01 10:45:37 -070085 *;resolution:=optional
86 </Import-Package>
Patrick Brady57b5eef2017-02-10 15:00:49 -080087 </instructions>
88 </configuration>
89 </plugin>
90 </plugins>
91 </build>
92
93</project>