Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
John McClung | 694852f | 2018-06-13 16:10:33 -0400 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 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 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 22 | ============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 Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <parent> |
| 29 | <artifactId>lock-manager-lib</artifactId> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 30 | <groupId>org.onap.appc</groupId> |
Patrick Brady | ed1cf1f | 2019-04-26 12:36:25 -0700 | [diff] [blame^] | 31 | <version>1.6.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 32 | </parent> |
| 33 | |
| 34 | <artifactId>lock-manager-impl</artifactId> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 35 | <name>APPC Lock Manager - Impl</name> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 36 | <packaging>bundle</packaging> |
| 37 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 38 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 41 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 42 | <artifactId>lock-manager-api</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | <scope>provided</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
Patrick Brady | ac62a4a | 2017-09-13 00:11:21 -0700 | [diff] [blame] | 47 | <groupId>org.mariadb.jdbc</groupId> |
| 48 | <artifactId>mariadb-java-client</artifactId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 49 | </dependency> |
| 50 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 51 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 52 | <artifactId>appc-data-access-lib</artifactId> |
| 53 | <version>${project.version}</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>com.att.eelf</groupId> |
| 57 | <artifactId>eelf-core</artifactId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 58 | </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 Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 72 | <Export-Service>org.onap.appc.lockmanager.api.LockManager</Export-Service> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 73 | <Import-Package> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 74 | org.onap.appc.lockmanager.api.*, com.att.eelf.configuration, *;resolution:=optional |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 75 | </Import-Package> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 76 | <Private-Package>org.onap.appc.lockmanager.impl.*</Private-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 77 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 78 | <Bundle-Version>${project.version}</Bundle-Version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 79 | </instructions> |
| 80 | </configuration> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </build> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 84 | </project> |