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" 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">
25     <modelVersion>4.0.0</modelVersion>
26     <parent>
27         <groupId>org.onap.appc.parent</groupId>
28         <artifactId>binding-parent</artifactId>
29         <version>2.7.2</version>
30         <relativePath/>
31     </parent>
32
33     <artifactId>appc-command-executor-core</artifactId>
34     <packaging>bundle</packaging>
35     <name>APPC Command Executor - Core</name>
36     <description>appc-command-executor-core OSGi bundle project.</description>
37
38     <dependencies>
39         <dependency>
40             <groupId>org.onap.appc</groupId>
41             <artifactId>appc-common-bundle</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.onap.appc</groupId>
46             <artifactId>appc-command-executor-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.onap.appc</groupId>
50             <artifactId>appc-workflow-management-api</artifactId>
51             <version>${project.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>org.onap.appc</groupId>
55             <artifactId>appc-request-handler-api</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>org.onap.appc</groupId>
60             <artifactId>execution-queue-management-lib</artifactId>
61             <version>${project.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>org.onap.appc</groupId>
65             <artifactId>appc-data-access-lib</artifactId>
66             <version>${project.version}</version>
67         </dependency>
68         <dependency>
69             <groupId>org.onap.appc</groupId>
70             <artifactId>appc-lifecycle-management-api</artifactId>
71             <version>${project.version}</version>
72         </dependency>
73         <dependency>
74             <groupId>org.mockito</groupId>
75             <artifactId>mockito-core</artifactId>
76             <version>1.10.19</version>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
81             <artifactId>aai-service-provider</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.onap.appc</groupId>
85             <artifactId>domain-model-lib</artifactId>
86             <version>${project.version}</version>
87         </dependency>
88         <dependency>
89             <groupId>org.osgi</groupId>
90             <artifactId>org.osgi.core</artifactId>
91             <scope>provided</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.hamcrest</groupId>
95             <artifactId>hamcrest-all</artifactId>
96             <version>1.3</version>
97             <scope>test</scope>
98         </dependency>
99     </dependencies>
100
101     <build>
102         <plugins>
103             <plugin>
104                 <groupId>org.apache.felix</groupId>
105                 <artifactId>maven-bundle-plugin</artifactId>
106                 <configuration>
107                     <instructions>
108                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
109                         <Bundle-Version>${project.version}</Bundle-Version>
110                         <Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false
111                         </Embed-Dependency>
112                         <Embed-Transitive>true</Embed-Transitive>
113                         <Export-Service>org.onap.appc.executor.CommandExecutor</Export-Service>
114                         <Import-Package>
115                             org.onap.appc.executionqueue.*,
116                             org.onap.appc.executor,
117                             org.onap.appc.executor.objects,
118                             *;resolution:=optional
119                         </Import-Package>
120                         <_removeheaders>Import-Service</_removeheaders>
121                     </instructions>
122                 </configuration>
123             </plugin>
124         </plugins>
125     </build>
126
127     <dependencyManagement>
128         <dependencies>
129             <dependency>
130                 <groupId>org.onap.appc</groupId>
131                 <artifactId>appc-command-executor-api</artifactId>
132                 <version>${project.version}</version>
133             </dependency>
134         </dependencies>
135     </dependencyManagement>
136     <groupId>org.onap.appc</groupId>
137     <version>1.7.2</version>
138 </project>