2d71339c2e973ee04bb8aa50f5259ec5d61f10b2
[appc.git] / appc-dispatcher / appc-command-executor / appc-command-executor-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4     <!--
5
6         Licensed to the Apache Software Foundation (ASF) under one or more
7         contributor license agreements.  See the NOTICE file distributed with
8         this work for additional information regarding copyright ownership.
9         The ASF licenses this file to You under the Apache License, Version 2.0
10         (the "License"); you may not use this file except in compliance with
11         the License.  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     -->
21
22     <modelVersion>4.0.0</modelVersion>
23                 <parent>
24             <groupId>org.openecomp.appc</groupId>
25             <artifactId>appc-command-executor</artifactId>
26             <version>1.3.0-SNAPSHOT</version>
27           </parent>
28     <artifactId>appc-command-executor-core</artifactId>
29     <packaging>bundle</packaging>
30
31     <name>appc-command-executor-core Bundle</name>
32     <description>appc-command-executor-core OSGi bundle project.</description>
33
34     <dependencies>
35         <dependency>
36                 <groupId>org.openecomp.appc</groupId>
37                 <artifactId>appc-common</artifactId>
38                 <version>${project.version}</version>
39         </dependency>
40         <dependency>
41                 <groupId>org.openecomp.appc</groupId>
42                 <artifactId>appc-command-executor-api</artifactId>
43         </dependency>
44         <dependency>
45                 <groupId>org.openecomp.appc</groupId>
46                 <artifactId>appc-workflow-management-api</artifactId>
47                 <version>${project.version}</version>
48         </dependency>
49         <dependency>
50                 <groupId>org.openecomp.appc</groupId>
51                 <artifactId>appc-request-handler-api</artifactId>
52                 <version>${project.version}</version>
53         </dependency>
54         <dependency>
55                 <groupId>org.openecomp.appc</groupId>
56                 <artifactId>execution-queue-management-lib</artifactId>
57                 <version>${project.version}</version>
58         </dependency>
59                                 <dependency>
60                 <groupId>org.openecomp.appc</groupId>
61                 <artifactId>appc-data-access-lib</artifactId>
62                 <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.openecomp.appc</groupId>
66             <artifactId>appc-dmaap-adapter-bundle</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.openecomp.appc</groupId>
71             <artifactId>appc-lifecycle-management-api</artifactId>
72             <version>${project.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
76             <artifactId>aai-service-provider</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.openecomp.appc</groupId>
80             <artifactId>domain-model-lib</artifactId>
81             <version>${project.version}</version>
82         </dependency>
83     </dependencies>
84
85     <build>
86         <plugins>
87             <plugin>
88                 <groupId>org.apache.felix</groupId>
89                 <artifactId>maven-bundle-plugin</artifactId>
90                 <configuration>
91                     <instructions>
92                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
93                         <Bundle-Version>${project.version}</Bundle-Version>
94                         <Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency>
95                         <Embed-Transitive>true</Embed-Transitive>
96                         <Export-Service>org.openecomp.appc.executor.CommandExecutor</Export-Service>
97                         <Import-Package>
98                             org.openecomp.appc.executionqueue.*,
99                             org.openecomp.appc.executor,
100                             org.openecomp.appc.executor.objects,
101                             *;resolution:=optional
102                         </Import-Package>
103                     </instructions>
104                 </configuration>
105             </plugin>
106         </plugins>
107     </build>
108
109     <dependencyManagement>
110         <dependencies>
111                 <dependency>
112                         <groupId>org.openecomp.appc</groupId>
113                         <artifactId>appc-command-executor-api</artifactId>
114                         <version>${project.version}</version>
115                 </dependency>
116         </dependencies>
117     </dependencyManagement>
118 </project>