Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame^] | 2 | <!-- |
| 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 Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 23 | <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.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 43 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 44 | <groupId>org.onap.appc</groupId> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 45 | <artifactId>appc-lifecycle-management</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 46 | <version>1.3.0-SNAPSHOT</version> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 47 | </parent> |
| 48 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 49 | <modelVersion>4.0.0</modelVersion> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 50 | <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 Pampana | 14ee9cc | 2018-01-10 10:26:15 -0500 | [diff] [blame] | 58 | <groupId>junit</groupId> |
| 59 | <artifactId>junit</artifactId> |
| 60 | </dependency> |
| 61 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 62 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 63 | <artifactId>appc-lifecycle-management-api</artifactId> |
| 64 | <version>${project.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 67 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 68 | <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 Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 74 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 75 | </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 Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 86 | <Embed-Transitive>true</Embed-Transitive> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 87 | <Export-Service>org.onap.appc.lifecyclemanager.LifecycleManager</Export-Service> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 88 | <Import-Package> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 89 | org.onap.appc.lifecyclemanager.*, |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 90 | *;resolution:=optional |
| 91 | </Import-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 92 | </instructions> |
| 93 | </configuration> |
| 94 | </plugin> |
| 95 | </plugins> |
| 96 | </build> |
| 97 | |
| 98 | </project> |