blob: 80ceebaa0ded20f2646bf93b5d66a2c36edf312f [file] [log] [blame]
Skip Wonnell463f70e2018-01-12 10:00:59 -06001<!--
2 ============LICENSE_START=======================================================
3 ONAP : APPC
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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=========================================================
20 ECOMP is a trademark and service mark of AT&T Intellectual Property.
21 -->
Patrick Brady57b5eef2017-02-10 15:00:49 -080022<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 Brady57b5eef2017-02-10 15:00:49 -080023 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080024 <groupId>org.onap.appc</groupId>
beili.zhoufe0e9892017-08-10 14:54:42 -040025 <artifactId>appc-lifecycle-management</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080026 <version>1.3.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080027 </parent>
Patrick Brady57b5eef2017-02-10 15:00:49 -080028
beili.zhoufe0e9892017-08-10 14:54:42 -040029 <modelVersion>4.0.0</modelVersion>
30 <artifactId>appc-lifecycle-management-api</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080031 <version>1.3.0-SNAPSHOT</version>
beili.zhoufe0e9892017-08-10 14:54:42 -040032 <packaging>bundle</packaging>
Patrick Brady57b5eef2017-02-10 15:00:49 -080033
beili.zhoufe0e9892017-08-10 14:54:42 -040034 <name>appc-lifecycle-management-api</name>
35 <url>http://maven.apache.org</url>
36
37 <properties>
38 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39 </properties>
shubhada733ed3b2018-03-14 12:22:04 +053040 <dependencies>
41 <dependency>
42 <groupId>junit</groupId>
43 <artifactId>junit</artifactId>
44 <version>4.12</version>
45 <scope>test</scope>
46 </dependency>
47 </dependencies>
Patrick Brady57b5eef2017-02-10 15:00:49 -080048 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
53 <configuration>
54 <instructions>
55 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
56 <Bundle-Version>${project.version}</Bundle-Version>
Patrick Brady07567592017-12-13 11:09:30 -080057 <Export-Package>org.onap.appc.lifecyclemanager.*</Export-Package>
Patrick Brady57b5eef2017-02-10 15:00:49 -080058 </instructions>
59 </configuration>
60 </plugin>
61 </plugins>
62 </build>
beili.zhoufe0e9892017-08-10 14:54:42 -040063
Patrick Brady57b5eef2017-02-10 15:00:49 -080064</project>