Use latest released parent pom
[ccsdk/features.git] / sdnr / northbound / energysavings / features / 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
23 <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">
24     <modelVersion>4.0.0</modelVersion>
25
26     <parent>
27         <groupId>org.onap.ccsdk.parent</groupId>
28         <artifactId>feature-repo-parent</artifactId>
29         <version>2.4.4</version>
30         <relativePath/>
31     </parent>
32
33     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34     <artifactId>energysavings-features</artifactId>
35     <version>1.1.1-SNAPSHOT</version>
36     <packaging>feature</packaging>
37
38     <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
39
40     <dependencyManagement>
41         <dependencies>
42             <dependency>
43                 <groupId>org.opendaylight.controller</groupId>
44                 <artifactId>mdsal-artifacts</artifactId>
45                 <version>1.6.1</version>
46                 <type>pom</type>
47                 <scope>import</scope>
48             </dependency>
49         </dependencies>
50     </dependencyManagement>
51
52     <dependencies>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>odl-mdsal-broker</artifactId>
56             <type>xml</type>
57             <classifier>features</classifier>
58         </dependency>
59         <dependency>
60
61             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
62             <artifactId>energysavings-model</artifactId>
63             <version>${project.version}</version>
64         </dependency>
65         <dependency>
66             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
67             <artifactId>energysavings-provider</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70     </dependencies>
71     <build>
72         <pluginManagement>
73             <plugins>
74                 <plugin>
75                     <groupId>org.eclipse.m2e</groupId>
76                     <artifactId>lifecycle-mapping</artifactId>
77                     <version>1.0.0</version>
78                     <configuration>
79                         <lifecycleMappingMetadata>
80                             <pluginExecutions>
81                                 <pluginExecution>
82                                     <pluginExecutionFilter>
83                                         <groupId>org.codehaus.mojo</groupId>
84                                         <artifactId>properties-maven-plugin</artifactId>
85                                         <versionRange>[1.0.0,)</versionRange>
86                                         <goals>
87                                             <goal>set-system-properties</goal>
88                                         </goals>
89                                     </pluginExecutionFilter>
90                                     <action>
91                                         <execute/>
92                                     </action>
93                                 </pluginExecution>
94                                 <pluginExecution>
95                                     <pluginExecutionFilter>
96                                         <groupId>org.apache.karaf.tooling</groupId>
97                                         <artifactId>karaf-maven-plugin</artifactId>
98                                         <versionRange>[4.0.0,)</versionRange>
99                                         <goals>
100                                             <goal>features-generate-descriptor</goal>
101                                         </goals>
102                                     </pluginExecutionFilter>
103                                     <action>
104                                         <execute/>
105                                     </action>
106                                 </pluginExecution>
107                             </pluginExecutions>
108                         </lifecycleMappingMetadata>
109                     </configuration>
110                 </plugin>
111             </plugins>
112         </pluginManagement>
113     </build>
114 </project>