blob: 9a823e7dd8fe73c869835f9e67f0c784653ccd6d [file] [log] [blame]
Anand36bcd562018-01-04 19:35:51 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
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
Dunietz, Irwin6a7b6c02019-03-03 12:20:53 -050013
Anand36bcd562018-01-04 19:35:51 -050014 http://www.apache.org/licenses/LICENSE-2.0
Dunietz, Irwin6a7b6c02019-03-03 12:20:53 -050015
Anand36bcd562018-01-04 19:35:51 -050016 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.
Dunietz, Irwin6a7b6c02019-03-03 12:20:53 -050021
Anand36bcd562018-01-04 19:35:51 -050022 ============LICENSE_END=========================================================
Dunietz, Irwin6a7b6c02019-03-03 12:20:53 -050023 -->
Anand36bcd562018-01-04 19:35:51 -050024<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26 <modelVersion>4.0.0</modelVersion>
Patrick Brady57b5eef2017-02-10 15:00:49 -080027 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080028 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080029 <artifactId>appc-dispatcher-common</artifactId>
Patrick Brady1d5c5fb2019-05-09 13:04:18 -070030 <version>1.5.1-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080031 </parent>
Patrick Brady57b5eef2017-02-10 15:00:49 -080032
Anand36bcd562018-01-04 19:35:51 -050033 <artifactId>appc-data-access-lib</artifactId>
34 <packaging>bundle</packaging>
35 <name>APPC Dispatcher Common - Data Access lib</name>
36 <url>http://maven.apache.org</url>
Patrick Brady57b5eef2017-02-10 15:00:49 -080037
Anand36bcd562018-01-04 19:35:51 -050038 <properties>
39 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40 <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
41 <apache.common.dbcp2.version>2.0.1</apache.common.dbcp2.version>
42 </properties>
Patrick Brady57b5eef2017-02-10 15:00:49 -080043
Anand36bcd562018-01-04 19:35:51 -050044 <dependencies>
45 <dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080046 <groupId>org.osgi</groupId>
47 <artifactId>org.osgi.core</artifactId>
48 <scope>provided</scope>
49 </dependency>
Anand36bcd562018-01-04 19:35:51 -050050 <dependency>
51 <groupId>org.onap.ccsdk.sli.core</groupId>
52 <artifactId>sli-common</artifactId>
53 <scope>compile</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.onap.ccsdk.sli.core</groupId>
57 <artifactId>sli-provider</artifactId>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.onap.appc</groupId>
Ryan Young7b632b42018-08-23 13:35:03 -040062 <artifactId>appc-common-bundle</artifactId>
Anand36bcd562018-01-04 19:35:51 -050063 <version>${project.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.commons</groupId>
67 <artifactId>commons-dbcp2</artifactId>
68 <version>${apache.common.dbcp2.version}</version>
69 </dependency>
70 <dependency>
Dunietz, Irwin6a7b6c02019-03-03 12:20:53 -050071 <groupId>org.mockito</groupId>
72 <artifactId>mockito-core</artifactId>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
Taka Cho70522392019-03-28 15:06:50 -040076 <groupId>com.h2database</groupId>
77 <artifactId>h2</artifactId>
78 <version>1.4.199</version>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
Anand36bcd562018-01-04 19:35:51 -050082 <groupId>org.slf4j</groupId>
83 <artifactId>slf4j-api</artifactId>
84 </dependency>
Dunietz, Irwin6a7b6c02019-03-03 12:20:53 -050085 <dependency>
86 <groupId>com.att.eelf</groupId>
87 <artifactId>eelf-core</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.mariadb.jdbc</groupId>
91 <artifactId>mariadb-java-client</artifactId>
92 </dependency>
Anand36bcd562018-01-04 19:35:51 -050093 </dependencies>
94 <build>
95 <plugins>
96 <plugin>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>maven-bundle-plugin</artifactId>
99 <extensions>true</extensions>
100 <configuration>
101 <instructions>
102 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
103 <Export-Package>
104 org.onap.appc.dao.util,
105 org.onap.appc.dao.util.api,
106 org.onap.appc.dao.util.exception,
107 org.onap.appc.dao.util.helper
108 </Export-Package>
109 <Import-Package>org.onap.appc.configuration,*;resolution:=optional</Import-Package>
110 <Embed-Dependency>mariadb-java-client,*;scope=compile|runtime</Embed-Dependency>
111 <Embed-Transitive>true</Embed-Transitive>
112 </instructions>
113 </configuration>
114 </plugin>
115 </plugins>
116 </build>
Patrick Brady1d5c5fb2019-05-09 13:04:18 -0700117 <version>1.5.1-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800118</project>