Release appc
[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>2.6.1</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.mockito</groupId>
82             <artifactId>mockito-core</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
87             <artifactId>aai-service-provider</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.onap.appc</groupId>
91             <artifactId>domain-model-lib</artifactId>
92             <version>${project.version}</version>
93         </dependency>
94         <dependency>
95             <groupId>org.osgi</groupId>
96             <artifactId>org.osgi.core</artifactId>
97             <scope>provided</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.hamcrest</groupId>
101             <artifactId>hamcrest-all</artifactId>
102             <version>1.3</version>
103             <scope>test</scope>
104         </dependency>
105     </dependencies>
106
107     <build>
108         <plugins>
109             <plugin>
110                 <groupId>org.apache.felix</groupId>
111                 <artifactId>maven-bundle-plugin</artifactId>
112                 <configuration>
113                     <instructions>
114                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
115                         <Bundle-Version>${project.version}</Bundle-Version>
116                         <Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false
117                         </Embed-Dependency>
118                         <Embed-Transitive>true</Embed-Transitive>
119                         <Export-Service>org.onap.appc.executor.CommandExecutor</Export-Service>
120                         <Import-Package>
121                             org.onap.appc.executionqueue.*,
122                             org.onap.appc.executor,
123                             org.onap.appc.executor.objects,
124                             *;resolution:=optional
125                         </Import-Package>
126                         <_removeheaders>Import-Service</_removeheaders>
127                     </instructions>
128                 </configuration>
129             </plugin>
130         </plugins>
131     </build>
132
133     <dependencyManagement>
134         <dependencies>
135             <dependency>
136                 <groupId>org.onap.appc</groupId>
137                 <artifactId>appc-command-executor-api</artifactId>
138                 <version>${project.version}</version>
139             </dependency>
140         </dependencies>
141     </dependencyManagement>
142     <groupId>org.onap.appc</groupId>
143     <version>1.6.3</version>
144 </project>