Merge "Support for MariaDB"
[ccsdk/features.git] / sdnr / wt / data-provider / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ ONAP : ccsdk features
5   ~ ================================================================================
6   ~ Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
7   ~ All rights reserved.
8   ~ ================================================================================
9   ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10   ~ ================================================================================
11   ~ Licensed under the Apache License, Version 2.0 (the "License");
12   ~ you may not use this file except in compliance with the License.
13   ~ You may obtain a copy of the License at
14   ~
15   ~     http://www.apache.org/licenses/LICENSE-2.0
16   ~
17   ~ Unless required by applicable law or agreed to in writing, software
18   ~ distributed under the License is distributed on an "AS IS" BASIS,
19   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20   ~ See the License for the specific language governing permissions and
21   ~ limitations under the License.
22   ~ ============LICENSE_END=======================================================
23   ~
24   -->
25
26 <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">
27     <modelVersion>4.0.0</modelVersion>
28
29     <parent>
30         <groupId>org.onap.ccsdk.parent</groupId>
31         <artifactId>binding-parent</artifactId>
32         <version>2.2.0-SNAPSHOT</version>
33         <relativePath/>
34     </parent>
35
36     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37     <artifactId>sdnr-wt-data-provider-provider</artifactId>
38     <version>1.2.0-SNAPSHOT</version>
39     <packaging>bundle</packaging>
40
41     <name>ccsdk-features :: ${project.artifactId}</name>
42     <licenses>
43         <license>
44             <name>Apache License, Version 2.0</name>
45             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
46         </license>
47     </licenses>
48
49     <properties>
50         <maven.javadoc.skip>true</maven.javadoc.skip>
51         <databaseport>49402</databaseport>
52         <initdb>${basedir}/../setup/target/sdnr-wt-data-provider-setup-${project.version}.jar</initdb>
53     </properties>
54
55     <dependencies>
56         <dependency>
57             <groupId>org.mockito</groupId>
58             <artifactId>mockito-core</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.apache.karaf.bundle</groupId>
63             <artifactId>org.apache.karaf.bundle.core</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>sdnr-wt-data-provider-setup</artifactId>
68             <version>${project.version}</version>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>sdnr-wt-common</artifactId>
74             <version>${project.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>sdnr-wt-yang-utils</artifactId>
79             <version>${project.version}</version>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>sdnr-wt-data-provider-model</artifactId>
84             <version>${project.version}</version>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>sdnr-wt-data-provider-dblib</artifactId>
89             <version>${project.version}</version>
90         </dependency>
91         <dependency>
92             <groupId>javax.servlet</groupId>
93             <artifactId>javax.servlet-api</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.osgi</groupId>
97             <artifactId>org.osgi.core</artifactId>
98             <scope>provided</scope>
99         </dependency>
100         <dependency>
101             <groupId>com.fasterxml.jackson.core</groupId>
102             <artifactId>jackson-annotations</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>com.fasterxml.jackson.core</groupId>
106             <artifactId>jackson-databind</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.apache.karaf.shell</groupId>
110             <artifactId>org.apache.karaf.shell.core</artifactId>
111             <scope>provided</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.netconf</groupId>
115             <artifactId>sal-netconf-connector</artifactId>
116             <scope>provided</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
120             <artifactId>rfc6991-ietf-yang-types</artifactId>
121             <scope>provided</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.mdsal</groupId>
125             <artifactId>yang-binding</artifactId>
126             <scope>provided</scope>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.mdsal</groupId>
130             <artifactId>mdsal-singleton-common-api</artifactId>
131             <scope>provided</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.json</groupId>
135             <artifactId>json</artifactId>
136             <scope>provided</scope>
137         </dependency>
138         <!--  MariaDB beginn -->
139         <dependency>
140             <groupId>ch.vorburger.mariaDB4j</groupId>
141             <artifactId>mariaDB4j</artifactId>
142             <scope>test</scope>
143         </dependency>
144         <!--  MariaDB end -->
145     </dependencies>
146
147     <build>
148         <plugins>
149             <plugin>
150                 <groupId>org.jacoco</groupId>
151                 <artifactId>jacoco-maven-plugin</artifactId>
152                 <configuration>
153                     <excludes>
154                         <exclude>**/gen/**</exclude>
155                         <exclude>**/generated-sources/**</exclude>
156                         <exclude>**/yang-gen-sal/**</exclude>
157                         <exclude>**/pax/**</exclude>
158                     </excludes>
159                 </configuration>
160             </plugin>
161             <plugin>
162                 <groupId>org.codehaus.mojo</groupId>
163                 <artifactId>exec-maven-plugin</artifactId>
164                 <executions>
165                     <execution>
166                         <id>generateDTOs</id>
167                         <phase>generate-sources</phase>
168                         <goals>
169                             <goal>exec</goal>
170                         </goals>
171                         <configuration>
172                             <executable>${basedir}/java.sh</executable>
173                             <arguments>
174                                 <argument>-jar</argument>
175                                 <argument>${initdb}</argument>
176                                 <argument>-c</argument>
177                                 <argument>pluginfile</argument>
178                                 <argument>-of</argument>
179                                 <argument>${project.build.directory}/EsInit.script</argument>
180                             </arguments>
181                         </configuration>
182                     </execution>
183                 </executions>
184             </plugin>
185             <plugin>
186                 <groupId>com.github.alexcojocaru</groupId>
187                 <artifactId>elasticsearch-maven-plugin</artifactId>
188                 <configuration>
189                     <skip>${skipTests}</skip>
190                     <clusterName>testCluster</clusterName>
191                     <transportPort>9500</transportPort>
192                     <httpPort>${databaseport}</httpPort>
193                     <version>7.9.3</version>
194                     <timeout>120</timeout>
195                     <pathInitScript>${project.build.directory}/EsInit.script</pathInitScript>
196                 </configuration>
197                 <executions>
198                     <execution>
199                         <id>start-elasticsearch</id>
200                         <phase>process-test-classes</phase>
201                         <goals>
202                             <goal>runforked</goal>
203                         </goals>
204                     </execution>
205                     <execution>
206                         <id>stop-elasticsearch</id>
207                         <phase>prepare-package</phase>
208                         <goals>
209                             <goal>stop</goal>
210                         </goals>
211                     </execution>
212                 </executions>
213             </plugin>
214 <!--             <plugin> -->
215 <!--                 <groupId>org.apache.felix</groupId> -->
216 <!--                 <artifactId>maven-bundle-plugin</artifactId> -->
217 <!--                 <extensions>true</extensions> -->
218 <!--                 <configuration> -->
219 <!--                     <instructions> -->
220 <!--                         <Export-Package>org.onap.ccsdk.features.sdnr.wt.dataprovider.*</Export-Package> -->
221 <!--                         <Import-Package>*</Import-Package> -->
222 <!--                         <Embed-Dependency>dblib-provider;scope=provided|;inline=false,utils-provider;scope=provided|;inline=false</Embed-Dependency> -->
223 <!--                     </instructions> -->
224 <!--                 </configuration> -->
225 <!--             </plugin> -->
226             <plugin>
227                 <groupId>org.apache.maven.plugins</groupId>
228                 <artifactId>maven-surefire-plugin</artifactId>
229                 <configuration>
230                     <systemProperties>
231                         <property>
232                             <name>databaseport</name>
233                             <value>${databaseport}</value>
234                         </property>
235                     </systemProperties>
236                 </configuration>
237             </plugin>
238         </plugins>
239     </build>
240 </project>