blob: d3a7b1f19cf0bcad9df41477d9b0537b07654140 [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Anand36bcd562018-01-04 19:35:51 -05002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClung694852f2018-06-13 16:10:33 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Anand36bcd562018-01-04 19:35:51 -05007 ================================================================================
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
Anand36bcd562018-01-04 19:35:51 -050022 ============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">
Patrick Brady57b5eef2017-02-10 15:00:49 -080027 <modelVersion>4.0.0</modelVersion>
28 <parent>
29 <artifactId>lock-manager-lib</artifactId>
Patrick Brady07567592017-12-13 11:09:30 -080030 <groupId>org.onap.appc</groupId>
Patrick Bradyed1cf1f2019-04-26 12:36:25 -070031 <version>1.6.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080032 </parent>
33
34 <artifactId>lock-manager-impl</artifactId>
Anand36bcd562018-01-04 19:35:51 -050035 <name>APPC Lock Manager - Impl</name>
Patrick Brady57b5eef2017-02-10 15:00:49 -080036 <packaging>bundle</packaging>
37
Anand36bcd562018-01-04 19:35:51 -050038
Patrick Brady57b5eef2017-02-10 15:00:49 -080039 <dependencies>
40 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080041 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080042 <artifactId>lock-manager-api</artifactId>
43 <version>${project.version}</version>
44 <scope>provided</scope>
45 </dependency>
46 <dependency>
Patrick Bradyac62a4a2017-09-13 00:11:21 -070047 <groupId>org.mariadb.jdbc</groupId>
48 <artifactId>mariadb-java-client</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080049 </dependency>
50 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080051 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080052 <artifactId>appc-data-access-lib</artifactId>
53 <version>${project.version}</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080054 </dependency>
55 <dependency>
56 <groupId>com.att.eelf</groupId>
57 <artifactId>eelf-core</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080058 </dependency>
59 <dependency>
60 <groupId>junit</groupId>
61 <artifactId>junit</artifactId>
62 </dependency>
63 </dependencies>
64
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-bundle-plugin</artifactId>
70 <configuration>
71 <instructions>
Patrick Brady07567592017-12-13 11:09:30 -080072 <Export-Service>org.onap.appc.lockmanager.api.LockManager</Export-Service>
Patrick Bradyc7d00752017-06-01 10:45:37 -070073 <Import-Package>
Anand36bcd562018-01-04 19:35:51 -050074 org.onap.appc.lockmanager.api.*, com.att.eelf.configuration, *;resolution:=optional
Patrick Bradyc7d00752017-06-01 10:45:37 -070075 </Import-Package>
Patrick Brady07567592017-12-13 11:09:30 -080076 <Private-Package>org.onap.appc.lockmanager.impl.*</Private-Package>
Patrick Brady57b5eef2017-02-10 15:00:49 -080077 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
78 <Bundle-Version>${project.version}</Bundle-Version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080079 </instructions>
80 </configuration>
81 </plugin>
82 </plugins>
83 </build>
Patrick Bradyc7d00752017-06-01 10:45:37 -070084</project>