Changes for new odl version
[appc.git] / appc-dispatcher / appc-command-executor / appc-command-executor-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Copyright (C) 2017 Amdocs
9   =============================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13
14        http://www.apache.org/licenses/LICENSE-2.0
15
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21
22   ============LICENSE_END=========================================================
23   -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0"
25          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27     <modelVersion>4.0.0</modelVersion>
28         <parent>
29                 <groupId>org.onap.appc.parent</groupId>
30                 <artifactId>binding-parent</artifactId>
31                 <version>1.5.0-SNAPSHOT</version>
32                 <relativePath />
33         </parent>
34
35     <artifactId>appc-command-executor-core</artifactId>
36     <packaging>bundle</packaging>
37     <name>APPC Command Executor - Core</name>
38     <description>appc-command-executor-core OSGi bundle project.</description>
39
40     <dependencies>
41         <dependency>
42             <groupId>org.onap.appc</groupId>
43             <artifactId>appc-common-bundle</artifactId>
44             <version>${project.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>org.onap.appc</groupId>
48             <artifactId>appc-command-executor-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.onap.appc</groupId>
52             <artifactId>appc-workflow-management-api</artifactId>
53             <version>${project.version}</version>
54         </dependency>
55         <dependency>
56             <groupId>org.onap.appc</groupId>
57             <artifactId>appc-request-handler-api</artifactId>
58             <version>${project.version}</version>
59         </dependency>
60         <dependency>
61             <groupId>org.onap.appc</groupId>
62             <artifactId>execution-queue-management-lib</artifactId>
63             <version>${project.version}</version>
64         </dependency>
65         <dependency>
66             <groupId>org.onap.appc</groupId>
67             <artifactId>appc-data-access-lib</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70         <dependency>
71             <groupId>org.onap.appc</groupId>
72             <artifactId>appc-dmaap-adapter-bundle</artifactId>
73             <version>${project.version}</version>
74         </dependency>
75         <dependency>
76             <groupId>org.onap.appc</groupId>
77             <artifactId>appc-lifecycle-management-api</artifactId>
78             <version>${project.version}</version>
79         </dependency>
80         <dependency>
81             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
82             <artifactId>aai-service-provider</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.onap.appc</groupId>
86             <artifactId>domain-model-lib</artifactId>
87             <version>${project.version}</version>
88         </dependency>
89         <dependency>
90             <groupId>org.osgi</groupId>
91             <artifactId>org.osgi.core</artifactId>
92             <scope>provided</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.hamcrest</groupId>
96             <artifactId>hamcrest-all</artifactId>
97             <version>1.3</version>
98             <scope>test</scope>
99         </dependency>
100     </dependencies>
101
102     <build>
103         <plugins>
104             <plugin>
105                 <groupId>org.apache.felix</groupId>
106                 <artifactId>maven-bundle-plugin</artifactId>
107                 <configuration>
108                     <instructions>
109                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
110                         <Bundle-Version>${project.version}</Bundle-Version>
111                         <Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false
112                         </Embed-Dependency>
113                         <Embed-Transitive>true</Embed-Transitive>
114                         <Export-Service>org.onap.appc.executor.CommandExecutor</Export-Service>
115                         <Import-Package>
116                             org.onap.appc.executionqueue.*,
117                             org.onap.appc.executor,
118                             org.onap.appc.executor.objects,
119                             *;resolution:=optional
120                         </Import-Package>
121                         <_removeheaders>Import-Service</_removeheaders>
122                     </instructions>
123                 </configuration>
124             </plugin>
125         </plugins>
126     </build>
127
128     <dependencyManagement>
129         <dependencies>
130             <dependency>
131                 <groupId>org.onap.appc</groupId>
132                 <artifactId>appc-command-executor-api</artifactId>
133                 <version>${project.version}</version>
134             </dependency>
135         </dependencies>
136     </dependencyManagement>
137     <groupId>org.onap.appc</groupId>
138     <version>1.5.0-SNAPSHOT</version>
139 </project>