Release version 1.3.1
[ccsdk/features.git] / sdnr / wt / devicemanager-core / 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 <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">
26     <modelVersion>4.0.0</modelVersion>
27
28     <parent>
29         <groupId>org.onap.ccsdk.parent</groupId>
30         <artifactId>binding-parent</artifactId>
31         <version>2.3.3</version>
32         <relativePath/>
33     </parent>
34
35     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36     <artifactId>sdnr-wt-devicemanager-core-provider</artifactId>
37     <version>1.3.2-SNAPSHOT</version>
38     <packaging>bundle</packaging>
39
40     <name>ccsdk-features :: ${project.artifactId}</name>
41     <licenses>
42         <license>
43             <name>Apache License, Version 2.0</name>
44             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
45         </license>
46     </licenses>
47
48     <properties>
49         <maven.javadoc.skip>true</maven.javadoc.skip>
50         <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
51         <buildtime>${maven.build.timestamp} UTC</buildtime>
52     </properties>
53
54     <dependencies>
55         <!-- begin for testing -->
56         <dependency>
57             <groupId>org.mockito</groupId>
58             <artifactId>mockito-core</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <!-- end for testing -->
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>sdnr-wt-devicemanager-core-model</artifactId>
65             <version>${project.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
70             <version>${project.version}</version>
71             <scope>provided</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
75             <artifactId>sdnr-wt-websocketmanager-model</artifactId>
76             <version>${project.version}</version>
77             <scope>provided</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
81             <artifactId>sdnr-wt-common</artifactId>
82             <version>${project.version}</version>
83             <scope>provided</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.osgi</groupId>
87             <artifactId>org.osgi.core</artifactId>
88             <scope>provided</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.mdsal.model</groupId>
92             <artifactId>ietf-topology</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.netconf</groupId>
96             <artifactId>sal-netconf-connector</artifactId>
97             <scope>provided</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
101             <artifactId>rfc6991-ietf-yang-types</artifactId>
102             <scope>provided</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.mdsal</groupId>
106             <artifactId>yang-binding</artifactId>
107             <scope>provided</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.mdsal</groupId>
111             <artifactId>mdsal-singleton-common-api</artifactId>
112             <scope>provided</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.json</groupId>
116             <artifactId>json</artifactId>
117             <scope>provided</scope>
118         </dependency>
119         <dependency>
120             <groupId>com.typesafe</groupId>
121             <artifactId>config</artifactId>
122             <scope>provided</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.osgi</groupId>
126             <artifactId>org.osgi.compendium</artifactId>
127             <scope>provided</scope>
128         </dependency>
129         <dependency>
130             <groupId>org.apache.commons</groupId>
131             <artifactId>commons-lang3</artifactId>
132             <scope>provided</scope>
133         </dependency>
134         <dependency>
135             <groupId>com.fasterxml.jackson.core</groupId>
136             <artifactId>jackson-core</artifactId>
137             <scope>provided</scope>
138         </dependency>
139         <dependency>
140             <groupId>com.fasterxml.jackson.core</groupId>
141             <artifactId>jackson-annotations</artifactId>
142             <scope>provided</scope>
143         </dependency>
144         <dependency>
145             <groupId>com.fasterxml.jackson.core</groupId>
146             <artifactId>jackson-databind</artifactId>
147             <scope>provided</scope>
148         </dependency>
149         <dependency>
150             <groupId>javax.xml.bind</groupId>
151             <artifactId>jaxb-api</artifactId>
152             <scope>provided</scope>
153         </dependency>
154         <dependency>
155             <groupId>org.glassfish.jaxb</groupId>
156             <artifactId>jaxb-runtime</artifactId>
157             <scope>provided</scope>
158         </dependency>
159     </dependencies>
160
161     <build>
162         <resources>
163             <resource>
164                 <directory>src/main/resources</directory>
165                 <filtering>true</filtering>
166             </resource>
167         </resources>
168         <plugins>
169             <plugin>
170                 <groupId>org.jacoco</groupId>
171                 <artifactId>jacoco-maven-plugin</artifactId>
172                 <configuration>
173                     <excludes>
174                         <exclude>**/gen/**</exclude>
175                         <exclude>**/generated-sources/**</exclude>
176                         <exclude>**/yang-gen-sal/**</exclude>
177                         <exclude>**/pax/**</exclude>
178                     </excludes>
179                 </configuration>
180             </plugin>
181         </plugins>
182     </build>
183 </project>