Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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"> |
| 3 | |
| 4 | <!-- |
| 5 | |
| 6 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 7 | contributor license agreements. See the NOTICE file distributed with |
| 8 | this work for additional information regarding copyright ownership. |
| 9 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 10 | (the "License"); you may not use this file except in compliance with |
| 11 | the License. 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 | --> |
| 21 | |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 22 | <parent> |
| 23 | <groupId>org.openecomp.appc</groupId> |
| 24 | <artifactId>appc-lifecycle-management</artifactId> |
| 25 | <version>1.1.0-SNAPSHOT</version> |
| 26 | </parent> |
| 27 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 28 | <modelVersion>4.0.0</modelVersion> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 29 | <artifactId>appc-lifecycle-management-core</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <name>appc-lifecycle-management-core Bundle</name> |
| 33 | <description>appc-lifecycle-management-core OSGi bundle project.</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.openecomp.appc</groupId> |
| 38 | <artifactId>appc-lifecycle-management-api</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.openecomp.appc</groupId> |
| 43 | <artifactId>state-machine-lib</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>com.att.eelf</groupId> |
| 48 | <artifactId>eelf-core</artifactId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 49 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 50 | </dependencies> |
| 51 | |
| 52 | <build> |
| 53 | <plugins> |
| 54 | <plugin> |
| 55 | <groupId>org.apache.felix</groupId> |
| 56 | <artifactId>maven-bundle-plugin</artifactId> |
| 57 | <configuration> |
| 58 | <instructions> |
| 59 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 60 | <Bundle-Version>${project.version}</Bundle-Version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 61 | <Embed-Transitive>true</Embed-Transitive> |
| 62 | <Export-Service>org.openecomp.appc.lifecyclemanager.LifecycleManager</Export-Service> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 63 | <Import-Package> |
| 64 | org.openecomp.appc.lifecyclemanager.*, |
| 65 | *;resolution:=optional |
| 66 | </Import-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 67 | </instructions> |
| 68 | </configuration> |
| 69 | </plugin> |
| 70 | </plugins> |
| 71 | </build> |
| 72 | |
| 73 | </project> |