Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP : APPC |
| 4 | ================================================================================ |
John McClung | 3a78edb | 2018-06-13 17:17:15 -0400 | [diff] [blame^] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 6 | Copyright (C) 2017 Amdocs |
| 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 20 | --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 21 | <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"> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 22 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 23 | <groupId>org.onap.appc</groupId> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 24 | <artifactId>appc-lifecycle-management</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 25 | <version>1.4.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 26 | </parent> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 27 | |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <artifactId>appc-lifecycle-management-api</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 30 | <version>1.4.0-SNAPSHOT</version> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 32 | |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 33 | <name>appc-lifecycle-management-api</name> |
| 34 | <url>http://maven.apache.org</url> |
| 35 | |
| 36 | <properties> |
| 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 38 | </properties> |
shubhada | 733ed3b | 2018-03-14 12:22:04 +0530 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>junit</groupId> |
| 42 | <artifactId>junit</artifactId> |
| 43 | <version>4.12</version> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | </dependencies> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 47 | <build> |
| 48 | <plugins> |
| 49 | <plugin> |
| 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>maven-bundle-plugin</artifactId> |
| 52 | <configuration> |
| 53 | <instructions> |
| 54 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 55 | <Bundle-Version>${project.version}</Bundle-Version> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 56 | <Export-Package>org.onap.appc.lifecyclemanager.*</Export-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 57 | </instructions> |
| 58 | </configuration> |
| 59 | </plugin> |
| 60 | </plugins> |
| 61 | </build> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 62 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 63 | </project> |