blob: e4ba6b2ad48e6591ae53190dca3a7ac9a3426677 [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 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 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=========================================================
21 ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 -->
Patrick Brady57b5eef2017-02-10 15:00:49 -080023<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">
24
25 <!--
26
27 Licensed to the Apache Software Foundation (ASF) under one or more
28 contributor license agreements. See the NOTICE file distributed with
29 this work for additional information regarding copyright ownership.
30 The ASF licenses this file to You under the Apache License, Version 2.0
31 (the "License"); you may not use this file except in compliance with
32 the License. You may obtain a copy of the License at
33
34 http://www.apache.org/licenses/LICENSE-2.0
35
36 Unless required by applicable law or agreed to in writing, software
37 distributed under the License is distributed on an "AS IS" BASIS,
38 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
39 See the License for the specific language governing permissions and
40 limitations under the License.
41 -->
42
beili.zhoufe0e9892017-08-10 14:54:42 -040043 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080044 <groupId>org.onap.appc</groupId>
beili.zhoufe0e9892017-08-10 14:54:42 -040045 <artifactId>appc-lifecycle-management</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080046 <version>1.3.0-SNAPSHOT</version>
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>
51 <packaging>bundle</packaging>
52
53 <name>appc-lifecycle-management-core Bundle</name>
54 <description>appc-lifecycle-management-core OSGi bundle project.</description>
55
56 <dependencies>
57 <dependency>
Dilip kumar Pampana14ee9cc2018-01-10 10:26:15 -050058 <groupId>junit</groupId>
59 <artifactId>junit</artifactId>
60 </dependency>
61 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080062 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080063 <artifactId>appc-lifecycle-management-api</artifactId>
64 <version>${project.version}</version>
65 </dependency>
66 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080067 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080068 <artifactId>state-machine-lib</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>com.att.eelf</groupId>
73 <artifactId>eelf-core</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080074 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080075 </dependencies>
76
77 <build>
78 <plugins>
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-bundle-plugin</artifactId>
82 <configuration>
83 <instructions>
84 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
85 <Bundle-Version>${project.version}</Bundle-Version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080086 <Embed-Transitive>true</Embed-Transitive>
Patrick Brady07567592017-12-13 11:09:30 -080087 <Export-Service>org.onap.appc.lifecyclemanager.LifecycleManager</Export-Service>
Patrick Bradyc7d00752017-06-01 10:45:37 -070088 <Import-Package>
Patrick Brady07567592017-12-13 11:09:30 -080089 org.onap.appc.lifecyclemanager.*,
Patrick Bradyc7d00752017-06-01 10:45:37 -070090 *;resolution:=optional
91 </Import-Package>
Patrick Brady57b5eef2017-02-10 15:00:49 -080092 </instructions>
93 </configuration>
94 </plugin>
95 </plugins>
96 </build>
97
98</project>