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 | ================================================================================ |
John McClung | 3a78edb | 2018-06-13 17:17:15 -0400 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 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========================================================= |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 21 | --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 22 | <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.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 24 | <parent> |
Patrick Brady | b4e7e11 | 2018-08-07 11:44:12 -0700 | [diff] [blame] | 25 | <groupId>org.onap.appc.parent</groupId> |
| 26 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 19ae780 | 2019-01-08 12:25:10 -0800 | [diff] [blame] | 27 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | b4e7e11 | 2018-08-07 11:44:12 -0700 | [diff] [blame] | 28 | <relativePath /> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 29 | </parent> |
| 30 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 31 | <modelVersion>4.0.0</modelVersion> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 32 | <artifactId>appc-lifecycle-management-core</artifactId> |
Patrick Brady | b4e7e11 | 2018-08-07 11:44:12 -0700 | [diff] [blame] | 33 | <groupId>org.onap.appc</groupId> |
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame] | 34 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 35 | <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 Pampana | 14ee9cc | 2018-01-10 10:26:15 -0500 | [diff] [blame] | 42 | <groupId>junit</groupId> |
| 43 | <artifactId>junit</artifactId> |
| 44 | </dependency> |
| 45 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 46 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 47 | <artifactId>appc-lifecycle-management-api</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 51 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 52 | <artifactId>state-machine-lib</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 56 | <groupId>ch.qos.logback</groupId> |
| 57 | <artifactId>logback-classic</artifactId> |
| 58 | <version>${logback.version}</version> |
| 59 | </dependency> |
| 60 | <dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 61 | <groupId>com.att.eelf</groupId> |
| 62 | <artifactId>eelf-core</artifactId> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 63 | <exclusions> |
| 64 | <exclusion> |
| 65 | <groupId>ch.qos.logback</groupId> |
| 66 | <artifactId>logback-classic</artifactId> |
| 67 | </exclusion> |
| 68 | </exclusions> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 69 | </dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 70 | </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 Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 81 | <Embed-Transitive>true</Embed-Transitive> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 82 | <Export-Service>org.onap.appc.lifecyclemanager.LifecycleManager</Export-Service> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 83 | <Import-Package> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 84 | org.onap.appc.lifecyclemanager.*, |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 85 | *;resolution:=optional |
| 86 | </Import-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 87 | </instructions> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | </plugins> |
| 91 | </build> |
| 92 | |
| 93 | </project> |