b52ef2600d351822b5aab5477ae40fa1adb2cf29
[ccsdk/features.git] / sdnr / northbound / energysavings / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ ONAP : ccsdk features
5   ~ ================================================================================
6   ~ Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
7   ~ ================================================================================
8   ~ Licensed under the Apache License, Version 2.0 (the "License");
9   ~ you may not use this file except in compliance with the License.
10   ~ You may obtain a copy of the License at
11   ~
12   ~     http://www.apache.org/licenses/LICENSE-2.0
13   ~
14   ~ Unless required by applicable law or agreed to in writing, software
15   ~ distributed under the License is distributed on an "AS IS" BASIS,
16   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   ~ See the License for the specific language governing permissions and
18   ~ limitations under the License.
19   ~ ============LICENSE_END=======================================================
20   ~
21   -->
22 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.ccsdk.parent</groupId>
27         <artifactId>binding-parent</artifactId>
28         <version>2.5.1</version>
29         <relativePath/>
30     </parent>
31
32     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
33     <artifactId>energysavings-provider</artifactId>
34     <version>1.1.1-SNAPSHOT</version>
35     <packaging>bundle</packaging>
36
37     <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
38
39     <dependencyManagement>
40         <dependencies>
41             <dependency>
42                 <groupId>org.opendaylight.controller</groupId>
43                 <artifactId>mdsal-artifacts</artifactId>
44                 <version>1.6.1</version>
45                 <type>pom</type>
46                 <scope>import</scope>
47             </dependency>
48         </dependencies>
49     </dependencyManagement>
50
51     <dependencies>
52         <dependency>
53             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
54             <artifactId>energysavings-model</artifactId>
55             <version>${project.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-binding-config</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller</groupId>
63             <artifactId>sal-binding-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.controller</groupId>
67             <artifactId>sal-common-util</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.controller</groupId>
71             <artifactId>sal-core-api</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>yang-data-impl</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80             <!-- <version>${junit.version}</version> -->
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.mockito</groupId>
85             <artifactId>mockito-core</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>com.sun.jersey</groupId>
90             <artifactId>jersey-client</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>com.sun.jersey</groupId>
94             <artifactId>jersey-core</artifactId>
95         </dependency>
96     </dependencies>
97
98     <build>
99         <pluginManagement>
100             <plugins>
101                 <plugin>
102                     <groupId>org.eclipse.m2e</groupId>
103                     <artifactId>lifecycle-mapping</artifactId>
104                     <version>1.0.0</version>
105                     <configuration>
106                         <lifecycleMappingMetadata>
107                             <pluginExecutions>
108                                 <pluginExecution>
109                                     <pluginExecutionFilter>
110                                         <groupId>org.codehaus.mojo</groupId>
111                                         <artifactId>properties-maven-plugin</artifactId>
112                                         <versionRange>[1.0.0,)</versionRange>
113                                         <goals>
114                                             <goal>set-system-properties</goal>
115                                         </goals>
116                                     </pluginExecutionFilter>
117                                     <action>
118                                         <execute/>
119                                     </action>
120                                 </pluginExecution>
121                             </pluginExecutions>
122                         </lifecycleMappingMetadata>
123                     </configuration>
124                 </plugin>
125             </plugins>
126         </pluginManagement>
127     </build>
128
129 </project>