blob: 2a7b68632788e57865ba00caeea59d906816bbed [file] [log] [blame]
herbertd77d01b2020-01-30 10:15:11 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05003 ~ ============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
herbertd77d01b2020-01-30 10:15:11 +010026<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>
Dan Timoney92037092020-08-06 15:28:15 -040032 <version>2.0.1-SNAPSHOT</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050033 <relativePath/>
herbertd77d01b2020-01-30 10:15:11 +010034 </parent>
35
36 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37 <artifactId>sdnr-wt-data-provider-provider</artifactId>
Dan Timoney92037092020-08-06 15:28:15 -040038 <version>1.0.1-SNAPSHOT</version>
herbertd77d01b2020-01-30 10:15:11 +010039 <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>
herbertd77d01b2020-01-30 10:15:11 +010050 <maven.javadoc.skip>true</maven.javadoc.skip>
herbertd77d01b2020-01-30 10:15:11 +010051 <databaseport>49402</databaseport>
herbertd77d01b2020-01-30 10:15:11 +010052 </properties>
53
54 <dependencies>
55 <dependency>
56 <groupId>org.mockito</groupId>
57 <artifactId>mockito-core</artifactId>
58 <scope>test</scope>
59 </dependency>
herbert4eed58b2020-02-28 13:51:00 +010060 <dependency>
Michael Dürreee75b192020-02-26 06:41:50 +010061 <groupId>${project.groupId}</groupId>
62 <artifactId>sdnr-wt-data-provider-setup</artifactId>
63 <version>${project.version}</version>
64 <scope>test</scope>
65 </dependency>
herbertd77d01b2020-01-30 10:15:11 +010066 <dependency>
67 <groupId>${project.groupId}</groupId>
68 <artifactId>sdnr-wt-common</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>${project.groupId}</groupId>
73 <artifactId>sdnr-wt-data-provider-model</artifactId>
74 <version>${project.version}</version>
75 </dependency>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050076 <dependency>
herbertd77d01b2020-01-30 10:15:11 +010077 <groupId>javax.servlet</groupId>
78 <artifactId>servlet-api</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>org.osgi</groupId>
82 <artifactId>org.osgi.core</artifactId>
83 <scope>provided</scope>
84 </dependency>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050085 <dependency>
herbertd77d01b2020-01-30 10:15:11 +010086 <groupId>org.apache.karaf.shell</groupId>
87 <artifactId>org.apache.karaf.shell.core</artifactId>
88 <scope>provided</scope>
89 </dependency>
highstreetherbert25b37592020-07-15 15:44:23 +020090<!-- <dependency> -->
91<!-- <groupId>org.apache.karaf.bundle</groupId> -->
92<!-- <artifactId>org.apache.karaf.bundle.core</artifactId> -->
93<!-- <scope>provided</scope> -->
94<!-- </dependency> -->
herbertd77d01b2020-01-30 10:15:11 +010095 <dependency>
96 <groupId>org.opendaylight.netconf</groupId>
97 <artifactId>sal-netconf-connector</artifactId>
98 <scope>provided</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
102 <artifactId>rfc6991-ietf-yang-types</artifactId>
103 <scope>provided</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.opendaylight.mdsal</groupId>
107 <artifactId>yang-binding</artifactId>
108 <scope>provided</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.opendaylight.mdsal</groupId>
112 <artifactId>mdsal-singleton-common-api</artifactId>
113 <scope>provided</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.json</groupId>
117 <artifactId>json</artifactId>
118 <scope>provided</scope>
119 </dependency>
120 </dependencies>
121
122 <build>
123 <plugins>
124 <plugin>
125 <groupId>org.jacoco</groupId>
126 <artifactId>jacoco-maven-plugin</artifactId>
127 <configuration>
128 <excludes>
129 <exclude>**/gen/**</exclude>
130 <exclude>**/generated-sources/**</exclude>
131 <exclude>**/yang-gen-sal/**</exclude>
132 <exclude>**/pax/**</exclude>
133 </excludes>
134 </configuration>
135 </plugin>
136 <plugin>
137 <groupId>org.codehaus.mojo</groupId>
138 <artifactId>exec-maven-plugin</artifactId>
139 <executions>
140 <execution>
141 <id>generateDTOs</id>
142 <phase>generate-sources</phase>
143 <goals>
144 <goal>exec</goal>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -0500145 </goals>
146 <configuration>
herbert4eed58b2020-02-28 13:51:00 +0100147 <executable>java</executable>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -0500148 <arguments>
Michael Dürreee75b192020-02-26 06:41:50 +0100149 <argument>-jar</argument>
highstreetherbert25b37592020-07-15 15:44:23 +0200150 <argument>${basedir}/../../data-provider/setup/target/sdnr-dmt.jar</argument>
Michael Dürreee75b192020-02-26 06:41:50 +0100151 <argument>-c</argument>
152 <argument>pluginfile</argument>
highstreetherbert25b37592020-07-15 15:44:23 +0200153 <argument>-v</argument>
154 <argument>v3</argument>
Michael Dürreee75b192020-02-26 06:41:50 +0100155 <argument>-of</argument>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -0500156 <argument>${project.build.directory}/EsInit.script</argument>
157 </arguments>
158 </configuration>
herbertd77d01b2020-01-30 10:15:11 +0100159 </execution>
160 </executions>
161 </plugin>
162 <plugin>
163 <groupId>com.github.alexcojocaru</groupId>
164 <artifactId>elasticsearch-maven-plugin</artifactId>
herbertd77d01b2020-01-30 10:15:11 +0100165 <configuration>
166 <skip>${skipTests}</skip>
167 <clusterName>testCluster</clusterName>
168 <transportPort>9500</transportPort>
169 <httpPort>${databaseport}</httpPort>
Michael Dürre4cd4c472020-08-31 10:36:42 +0200170 <version>7.6.1</version>
herbertd77d01b2020-01-30 10:15:11 +0100171 <timeout>120</timeout>
172 <pathInitScript>${project.build.directory}/EsInit.script</pathInitScript>
173 </configuration>
174 <executions>
175 <execution>
176 <id>start-elasticsearch</id>
177 <phase>process-test-classes</phase>
178 <goals>
179 <goal>runforked</goal>
180 </goals>
181 </execution>
182 <execution>
183 <id>stop-elasticsearch</id>
184 <phase>prepare-package</phase>
185 <goals>
186 <goal>stop</goal>
187 </goals>
188 </execution>
189 </executions>
190 </plugin>
191 <plugin>
192 <groupId>org.apache.maven.plugins</groupId>
193 <artifactId>maven-surefire-plugin</artifactId>
194 <configuration>
195 <systemProperties>
196 <property>
197 <name>databaseport</name>
198 <value>${databaseport}</value>
199 </property>
200 </systemProperties>
201 </configuration>
202 </plugin>
203 </plugins>
204 </build>
205</project>