Roll to initial Dublin snapshot
[ccsdk/features.git] / blueprints-processor / adaptors / data-adaptor-provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright © 2017-2018 AT&T Intellectual Property. Modifications Copyright 
3         © 2018 IBM. Licensed under the Apache License, Version 2.0 (the "License"); 
4         you may not use this file except in compliance with the License. You may 
5         obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 
6         Unless required by applicable law or agreed to in writing, software distributed 
7         under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 
8         OR CONDITIONS OF ANY KIND, either express or implied. See the License for 
9         the specific language governing permissions and limitations under the License. -->
10
11 <project xmlns="http://maven.apache.org/POM/4.0.0"
12         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14         <modelVersion>4.0.0</modelVersion>
15
16         <parent>
17                 <groupId>org.onap.ccsdk.parent</groupId>
18                 <artifactId>binding-parent</artifactId>
19                 <version>1.2.0-SNAPSHOT</version>
20                 <relativePath />
21         </parent>
22
23         <groupId>org.onap.ccsdk.features</groupId>
24         <version>0.4.0-SNAPSHOT</version>
25         <artifactId>blueprints-data-adaptor-provider</artifactId>
26         <packaging>bundle</packaging>
27         <name>Blueprints Data Adaptor - Provider</name>
28         <url>http://maven.apache.org</url>
29
30         <dependencies>
31                 <dependency>
32                         <groupId>org.apache.commons</groupId>
33                         <artifactId>commons-lang3</artifactId>
34                         <version>${commons.lang3.version}</version>
35                 </dependency>
36                 <dependency>
37                         <groupId>org.onap.ccsdk.sli.core</groupId>
38                         <artifactId>sli-provider</artifactId>
39                         <version>${project.version}</version>
40                         <scope>compile</scope>
41                 </dependency>
42                 <dependency>
43                         <groupId>commons-io</groupId>
44                         <artifactId>commons-io</artifactId>
45                         <version>2.5</version>
46                 </dependency>
47                 <dependency>
48                         <groupId>org.mariadb.jdbc</groupId>
49                         <artifactId>mariadb-java-client</artifactId>
50                         <version>${mariadb.connector.version}</version>
51                         <scope>runtime</scope>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.springframework</groupId>
55                         <artifactId>spring-context</artifactId>
56                         <version>${spring.version}</version>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.springframework</groupId>
60                         <artifactId>spring-jdbc</artifactId>
61                         <version>${spring.version}</version>
62                 </dependency>
63                 <dependency>
64                         <groupId>com.att.eelf</groupId>
65                         <artifactId>eelf-core</artifactId>
66                         <version>${eelf.version}</version>
67                 </dependency>
68                 <dependency>
69                         <groupId>org.springframework</groupId>
70                         <artifactId>spring-test</artifactId>
71                         <version>${spring.version}</version>
72                         <scope>test</scope>
73                 </dependency>
74                 <dependency>
75                         <groupId>com.h2database</groupId>
76                         <artifactId>h2</artifactId>
77                         <version>${h2database.version}</version>
78                         <scope>test</scope>
79                 </dependency>
80                 <dependency>
81                         <groupId>junit</groupId>
82                         <artifactId>junit</artifactId>
83                         <version>${junit.version}</version>
84                         <scope>test</scope>
85                 </dependency>
86         </dependencies>
87
88         <build>
89                 <plugins>
90                         <plugin>
91                                 <groupId>org.apache.maven.plugins</groupId>
92                                 <artifactId>maven-javadoc-plugin</artifactId>
93                                 <configuration>
94                                         <additionalparam>-Xdoclint:none</additionalparam>
95                                 </configuration>
96                         </plugin>
97                         <plugin>
98                                 <groupId>org.apache.felix</groupId>
99                                 <artifactId>maven-bundle-plugin</artifactId>
100                                 <version>${maven.bundle.version}</version>
101                                 <extensions>true</extensions>
102                                 <configuration>
103                                         <instructions>
104                                                 <Bundle-Name>${project.artifactId}</Bundle-Name>
105                                                 <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
106                                                 <Export-Package>org.onap.ccsdk.features.data.adaptor,
107                                                         org.onap.ccsdk.features.data.adaptor.dao,
108                                                         org.onap.ccsdk.features.data.adaptor.db,
109                                                         org.onap.ccsdk.features.data.adaptor.domain,
110                                                         org.onap.ccsdk.features.data.adaptor.service
111                                                 </Export-Package>
112                                         </instructions>
113                                 </configuration>
114                         </plugin>
115                 </plugins>
116         </build>
117 </project>