Update to use released 1.2.2 parent
[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 <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">
11         <modelVersion>4.0.0</modelVersion>
12
13         <parent>
14                 <groupId>org.onap.ccsdk.parent</groupId>
15                 <artifactId>binding-parent</artifactId>
16                 <version>1.2.2</version>
17                 <relativePath/>
18         </parent>
19
20         <groupId>org.onap.ccsdk.features</groupId>
21         <version>0.4.2-SNAPSHOT</version>
22         <artifactId>blueprints-data-adaptor-provider</artifactId>
23         <packaging>bundle</packaging>
24         <name>Blueprints Data Adaptor - Provider</name>
25         <url>http://maven.apache.org</url>
26         
27     <dependencyManagement>
28         <dependencies>
29                 <dependency>
30                         <groupId>org.onap.ccsdk.sli.core</groupId>
31                         <artifactId>sli-core-artifacts</artifactId>
32                         <version>${ccsdk.sli.core.version}</version>
33                         <type>pom</type>
34                         <scope>import</scope>
35                 </dependency>
36         </dependencies>
37     </dependencyManagement>
38
39         <dependencies>
40                 <dependency>
41                         <groupId>org.apache.commons</groupId>
42                         <artifactId>commons-lang3</artifactId>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.onap.ccsdk.sli.core</groupId>
46                         <artifactId>sli-provider</artifactId>
47                         <scope>compile</scope>
48                 </dependency>
49                 <dependency>
50                         <groupId>commons-io</groupId>
51                         <artifactId>commons-io</artifactId>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.mariadb.jdbc</groupId>
55                         <artifactId>mariadb-java-client</artifactId>
56                         <version>${mariadb.connector.version}</version>
57                         <scope>runtime</scope>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.springframework</groupId>
61                         <artifactId>spring-context</artifactId>
62                         <version>${spring.version}</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.springframework</groupId>
66                         <artifactId>spring-jdbc</artifactId>
67                         <version>${spring.version}</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>com.att.eelf</groupId>
71                         <artifactId>eelf-core</artifactId>
72                         <version>${eelf.version}</version>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.springframework</groupId>
76                         <artifactId>spring-test</artifactId>
77                         <version>${spring.version}</version>
78                         <scope>test</scope>
79                 </dependency>
80                 <dependency>
81                         <groupId>com.h2database</groupId>
82                         <artifactId>h2</artifactId>
83                         <version>${h2database.version}</version>
84                         <scope>test</scope>
85                 </dependency>
86                 <dependency>
87                         <groupId>junit</groupId>
88                         <artifactId>junit</artifactId>
89                         <version>${junit.version}</version>
90                         <scope>test</scope>
91                 </dependency>
92         </dependencies>
93
94         <build>
95                 <plugins>
96                         <plugin>
97                                 <groupId>org.apache.maven.plugins</groupId>
98                                 <artifactId>maven-javadoc-plugin</artifactId>
99                                 <configuration>
100                                         <additionalparam>-Xdoclint:none</additionalparam>
101                                 </configuration>
102                         </plugin>
103                         <plugin>
104                                 <groupId>org.apache.felix</groupId>
105                                 <artifactId>maven-bundle-plugin</artifactId>
106                                 <version>${maven.bundle.version}</version>
107                                 <extensions>true</extensions>
108                                 <configuration>
109                                         <instructions>
110                                                 <Bundle-Name>${project.artifactId}</Bundle-Name>
111                                                 <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
112                                                 <Export-Package>org.onap.ccsdk.features.data.adaptor,
113                                                         org.onap.ccsdk.features.data.adaptor.dao,
114                                                         org.onap.ccsdk.features.data.adaptor.db,
115                                                         org.onap.ccsdk.features.data.adaptor.domain,
116                                                         org.onap.ccsdk.features.data.adaptor.service
117                                                 </Export-Package>
118                                         </instructions>
119                                 </configuration>
120                         </plugin>
121                 </plugins>
122         </build>
123 </project>