Change to released parent poms
[appc.git] / appc-lifecycle-management / appc-lifecycle-management-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 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   -->
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
24     <!--
25
26         Licensed to the Apache Software Foundation (ASF) under one or more
27         contributor license agreements.  See the NOTICE file distributed with
28         this work for additional information regarding copyright ownership.
29         The ASF licenses this file to You under the Apache License, Version 2.0
30         (the "License"); you may not use this file except in compliance with
31         the License.  You may obtain a copy of the License at
32
33             http://www.apache.org/licenses/LICENSE-2.0
34
35         Unless required by applicable law or agreed to in writing, software
36         distributed under the License is distributed on an "AS IS" BASIS,
37         WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
38         See the License for the specific language governing permissions and
39         limitations under the License.
40     -->
41
42     <parent>
43         <groupId>org.onap.appc.parent</groupId>
44         <artifactId>binding-parent</artifactId>
45         <version>1.4.0</version>
46         <relativePath />
47     </parent>
48
49     <modelVersion>4.0.0</modelVersion>
50     <artifactId>appc-lifecycle-management-core</artifactId>
51     <groupId>org.onap.appc</groupId>
52     <version>1.4.0-SNAPSHOT</version>
53     <packaging>bundle</packaging>
54
55     <name>appc-lifecycle-management-core Bundle</name>
56     <description>appc-lifecycle-management-core OSGi bundle project.</description>
57
58     <dependencies>
59         <dependency>
60             <groupId>junit</groupId>
61             <artifactId>junit</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.onap.appc</groupId>
65             <artifactId>appc-lifecycle-management-api</artifactId>
66             <version>${project.version}</version>
67         </dependency>
68         <dependency>
69             <groupId>org.onap.appc</groupId>
70             <artifactId>state-machine-lib</artifactId>
71             <version>${project.version}</version>
72         </dependency>
73         <dependency>
74          <groupId>ch.qos.logback</groupId>
75          <artifactId>logback-classic</artifactId>
76          <version>${logback.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>com.att.eelf</groupId>
80             <artifactId>eelf-core</artifactId>
81             <exclusions>
82                   <exclusion>
83                        <groupId>ch.qos.logback</groupId>
84                        <artifactId>logback-classic</artifactId>
85                   </exclusion>
86             </exclusions>
87         </dependency>
88     </dependencies>
89
90     <build>
91         <plugins>
92             <plugin>
93                 <groupId>org.apache.felix</groupId>
94                 <artifactId>maven-bundle-plugin</artifactId>
95                 <configuration>
96                     <instructions>
97                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
98                         <Bundle-Version>${project.version}</Bundle-Version>
99                         <Embed-Transitive>true</Embed-Transitive>
100                         <Export-Service>org.onap.appc.lifecyclemanager.LifecycleManager</Export-Service>
101                         <Import-Package>
102                             org.onap.appc.lifecyclemanager.*,
103                             *;resolution:=optional
104                         </Import-Package>
105                     </instructions>
106                 </configuration>
107             </plugin>
108         </plugins>
109     </build>
110
111 </project>