Increment version to 1.8.0-SNAPSHOT
[appc.git] / appc-dispatcher / appc-workflow-management / appc-workflow-management-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.1</version>
30         <relativePath/>
31     </parent>
32
33     <artifactId>appc-workflow-management-core</artifactId>
34     <packaging>bundle</packaging>
35     <name>APPC Workflow Management - Core</name>
36     <description>appc-workflow-management-core OSGi bundle project.</description>
37
38
39     <dependencies>
40         <dependency>
41             <groupId>org.onap.appc</groupId>
42             <artifactId>appc-common-bundle</artifactId>
43             <version>${project.version}</version>
44         </dependency>
45         <dependency>
46             <groupId>org.onap.appc</groupId>
47             <artifactId>appc-data-access-lib</artifactId>
48             <version>${project.version}</version>
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-ranking-framework-lib</artifactId>
58             <version>${project.version}</version>
59         </dependency>
60         <dependency>
61             <groupId>org.mockito</groupId>
62             <artifactId>mockito-core</artifactId>
63             <version>1.10.19</version>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.onap.appc</groupId>
68             <artifactId>transaction-recorder</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.osgi</groupId>
73             <artifactId>org.osgi.core</artifactId>
74             <scope>provided</scope>
75         </dependency>
76     </dependencies>
77
78     <build>
79         <plugins>
80             <plugin>
81                 <groupId>org.apache.felix</groupId>
82                 <artifactId>maven-bundle-plugin</artifactId>
83                 <configuration>
84                     <instructions>
85                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
86                         <Bundle-Version>${project.version}</Bundle-Version>
87                         <Bundle-Activator>org.onap.appc.workflow.activator.WorkflowManagerActivator</Bundle-Activator>
88                         <Embed-Dependency>javax.json;scope=compile|runtime;inline=false</Embed-Dependency>
89                         <Embed-Transitive>true</Embed-Transitive>
90                         <Export-Service>org.onap.appc.workflow.WorkFlowManager</Export-Service>
91                         <Import-Package>
92                             org.onap.appc.transactionrecorder,org.onap.appc.transactionrecorder.objects,
93                             org.onap.appc.workflow,org.onap.appc.workflow.objects,
94                             org.onap.appc.configuration,
95                             org.onap.appc.util,com.att.eelf.configuration, org.onap.appc.dao.util,
96                             *;resolution:=optional
97                         </Import-Package>
98                         <_removeheaders>Import-Service</_removeheaders>
99                     </instructions>
100                 </configuration>
101             </plugin>
102         </plugins>
103     </build>
104
105     <groupId>org.onap.appc</groupId>
106     <version>1.8.0-SNAPSHOT</version>
107 </project>