Release ccsdk/features
[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 <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>feature-repo-parent</artifactId>
28         <version>2.5.4</version>
29         <relativePath/>
30     </parent>
31
32     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
33     <artifactId>energysavings-features</artifactId>
34     <version>1.1.1</version>
35     <packaging>feature</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.opendaylight.controller</groupId>
54             <artifactId>odl-mdsal-broker</artifactId>
55             <type>xml</type>
56             <classifier>features</classifier>
57         </dependency>
58         <dependency>
59
60             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
61             <artifactId>energysavings-model</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
66             <artifactId>energysavings-provider</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69     </dependencies>
70     <build>
71         <pluginManagement>
72             <plugins>
73                 <plugin>
74                     <groupId>org.eclipse.m2e</groupId>
75                     <artifactId>lifecycle-mapping</artifactId>
76                     <version>1.0.0</version>
77                     <configuration>
78                         <lifecycleMappingMetadata>
79                             <pluginExecutions>
80                                 <pluginExecution>
81                                     <pluginExecutionFilter>
82                                         <groupId>org.codehaus.mojo</groupId>
83                                         <artifactId>properties-maven-plugin</artifactId>
84                                         <versionRange>[1.0.0,)</versionRange>
85                                         <goals>
86                                             <goal>set-system-properties</goal>
87                                         </goals>
88                                     </pluginExecutionFilter>
89                                     <action>
90                                         <execute/>
91                                     </action>
92                                 </pluginExecution>
93                                 <pluginExecution>
94                                     <pluginExecutionFilter>
95                                         <groupId>org.apache.karaf.tooling</groupId>
96                                         <artifactId>karaf-maven-plugin</artifactId>
97                                         <versionRange>[4.0.0,)</versionRange>
98                                         <goals>
99                                             <goal>features-generate-descriptor</goal>
100                                         </goals>
101                                     </pluginExecutionFilter>
102                                     <action>
103                                         <execute/>
104                                     </action>
105                                 </pluginExecution>
106                             </pluginExecutions>
107                         </lifecycleMappingMetadata>
108                     </configuration>
109                 </plugin>
110             </plugins>
111         </pluginManagement>
112     </build>
113 </project>