blob: 59ba77f1f0031bb067da4dc9fa1dcb885fd10f63 [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
24 <!--
25
26 Licensed to the Apache Software Foundation (ASF) under one or more
27 contributor license agreements. See the NOTICE file distributed with
28 this work for additional information regarding copyright ownership.
29 The ASF licenses this file to You under the Apache License, Version 2.0
30 (the "License"); you may not use this file except in compliance with
31 the License. You may obtain a copy of the License at
32
33 http://www.apache.org/licenses/LICENSE-2.0
34
35 Unless required by applicable law or agreed to in writing, software
36 distributed under the License is distributed on an "AS IS" BASIS,
37 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
38 See the License for the specific language governing permissions and
39 limitations under the License.
40 -->
41
beili.zhoufe0e9892017-08-10 14:54:42 -040042 <parent>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070043 <groupId>org.onap.appc.parent</groupId>
44 <artifactId>binding-parent</artifactId>
Patrick Brady9d380082018-10-09 11:32:38 -070045 <version>1.4.0</version>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070046 <relativePath />
beili.zhoufe0e9892017-08-10 14:54:42 -040047 </parent>
48
Patrick Brady57b5eef2017-02-10 15:00:49 -080049 <modelVersion>4.0.0</modelVersion>
Patrick Brady57b5eef2017-02-10 15:00:49 -080050 <artifactId>appc-lifecycle-management-core</artifactId>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070051 <groupId>org.onap.appc</groupId>
52 <version>1.4.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080053 <packaging>bundle</packaging>
54
55 <name>appc-lifecycle-management-core Bundle</name>
56 <description>appc-lifecycle-management-core OSGi bundle project.</description>
57
58 <dependencies>
59 <dependency>
Dilip kumar Pampana14ee9cc2018-01-10 10:26:15 -050060 <groupId>junit</groupId>
61 <artifactId>junit</artifactId>
62 </dependency>
63 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080064 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080065 <artifactId>appc-lifecycle-management-api</artifactId>
66 <version>${project.version}</version>
67 </dependency>
68 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080069 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080070 <artifactId>state-machine-lib</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73 <dependency>
Patrick Brady28da5022018-09-17 12:52:55 -070074 <groupId>ch.qos.logback</groupId>
75 <artifactId>logback-classic</artifactId>
76 <version>${logback.version}</version>
77 </dependency>
78 <dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080079 <groupId>com.att.eelf</groupId>
80 <artifactId>eelf-core</artifactId>
Patrick Brady28da5022018-09-17 12:52:55 -070081 <exclusions>
82 <exclusion>
83 <groupId>ch.qos.logback</groupId>
84 <artifactId>logback-classic</artifactId>
85 </exclusion>
86 </exclusions>
Patrick Brady57b5eef2017-02-10 15:00:49 -080087 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080088 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>maven-bundle-plugin</artifactId>
95 <configuration>
96 <instructions>
97 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
98 <Bundle-Version>${project.version}</Bundle-Version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080099 <Embed-Transitive>true</Embed-Transitive>
Patrick Brady07567592017-12-13 11:09:30 -0800100 <Export-Service>org.onap.appc.lifecyclemanager.LifecycleManager</Export-Service>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700101 <Import-Package>
Patrick Brady07567592017-12-13 11:09:30 -0800102 org.onap.appc.lifecyclemanager.*,
Patrick Bradyc7d00752017-06-01 10:45:37 -0700103 *;resolution:=optional
104 </Import-Package>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800105 </instructions>
106 </configuration>
107 </plugin>
108 </plugins>
109 </build>
110
111</project>