blob: 3414775f50b7982c35966c33401696fc1d35cdc8 [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5 <!-- Licensed to the Apache Software Foundation (ASF) under one or more
6 contributor license agreements. See the NOTICE file distributed with this
7 work for additional information regarding copyright ownership. The ASF licenses
8 this file to You under the Apache License, Version 2.0 (the "License"); you
9 may not use this file except in compliance with the License. You may obtain
10 a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless
11 required by applicable law or agreed to in writing, software distributed
12 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
13 OR CONDITIONS OF ANY KIND, either express or implied. See the License for
14 the specific language governing permissions and limitations under the License. -->
15
16 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <groupId>org.openecomp.appc</groupId>
19 <artifactId>appc-request-handler</artifactId>
Patrick Brady88439692017-02-24 00:04:10 -080020 <version>1.0.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080021 </parent>
22 <artifactId>appc-request-handler-core</artifactId>
23 <packaging>bundle</packaging>
24
25 <name>appc-request-handler-core Bundle</name>
26 <description>appc-request-handler-core OSGi bundle project.</description>
27
28 <dependencies>
29 <dependency>
30 <groupId>org.openecomp.appc</groupId>
31 <artifactId>appc-common</artifactId>
32 <version>${project.version}</version>
33 </dependency>
34 <dependency>
35 <groupId>org.openecomp.appc</groupId>
36 <artifactId>appc-metric-bundle</artifactId>
37 <version>${project.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>org.openecomp.appc</groupId>
41 <artifactId>appc-dmaap-adapter-bundle</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44
45 <dependency>
46 <groupId>org.openecomp.appc</groupId>
47 <artifactId>appc-command-executor-api</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.openecomp.appc</groupId>
52 <artifactId>appc-workflow-management-api</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.openecomp.appc</groupId>
57 <artifactId>appc-request-handler-api</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.openecomp.appc</groupId>
62 <artifactId>execution-queue-management-lib</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.openecomp.appc</groupId>
67 <artifactId>appc-lifecycle-management-api</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.openecomp.appc</groupId>
72 <artifactId>appc-data-access-lib</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.openecomp.appc</groupId>
77 <artifactId>lock-manager-api</artifactId>
78 <version>${project.version}</version>
79 </dependency>
80
81 <dependency>
82 <groupId>org.openecomp.sdnc.adaptors</groupId>
83 <artifactId>aai-service-provider</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.openecomp.appc</groupId>
87 <artifactId>domain-model-lib</artifactId>
88 <version>${project.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.openecomp.appc</groupId>
92 <artifactId>appc-provider-model</artifactId>
93 <version>${project.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>org.openecomp.appc</groupId>
97 <artifactId>transaction-recorder</artifactId>
98 <version>${project.version}</version>
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>appc-provider-model,appc-dmaap-adapter-bundle,appc-metric-bundle,appc-common,eelf-core,logback-core,logback-classic,appc-data-access-lib;scope=compile|runtime;inline=false</Embed-Dependency>
112 <Embed-Transitive>true</Embed-Transitive>
113 <Export-Service>org.openecomp.appc.requesthandler.RequestHandler</Export-Service>
Patrick Brady85adac12017-03-03 06:02:11 -0800114 <Import-Package>org.openecomp.appc.lockmanager.api.*,org.openecomp.appc.requesthandler,org.openecomp.appc.requesthandler.objects,org.openecomp.appc.transactionrecorder,org.openecomp.appc.transactionrecorder.objects,!groovy.lang,!org.apache.log,!org.apache.log4j.*,!org.codehaus.jackson.*,!org.codehaus.jackson.map.*,!org.codehaus.commons.compiler,!org.codehaus.groovy.*,!org.apache.commons.lang3,!org.codehaus.janino,!org.jasypt.*,!com.ibm.icu.*,!com.sun.faces.*,*;resolution:=optional</Import-Package>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800115 </instructions>
116 </configuration>
117 </plugin>
118 </plugins>
119 </build>
120
121</project>