ORAN A1 Adapter YANG Model Update
[ccsdk/features.git] / sdnr / northbound / energysavings / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>binding-parent</artifactId>
8         <version>1.5.1</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
13     <artifactId>energysavings-provider</artifactId>
14     <version>0.7.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
18
19     <dependencyManagement>
20         <dependencies>
21             <dependency>
22                 <groupId>org.opendaylight.controller</groupId>
23                 <artifactId>mdsal-artifacts</artifactId>
24                 <version>1.6.1</version>
25                 <type>pom</type>
26                 <scope>import</scope>
27             </dependency>
28         </dependencies>
29     </dependencyManagement>
30
31     <dependencies>
32         <dependency>
33             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34             <artifactId>energysavings-model</artifactId>
35             <version>${project.version}</version>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.controller</groupId>
39             <artifactId>sal-binding-config</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.controller</groupId>
43             <artifactId>sal-binding-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.controller</groupId>
47             <artifactId>sal-common-util</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.controller</groupId>
51             <artifactId>sal-core-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-data-impl</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>junit</groupId>
59             <artifactId>junit</artifactId>
60             <!-- <version>${junit.version}</version> -->
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.mockito</groupId>
65             <artifactId>mockito-core</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>com.sun.jersey</groupId>
70             <artifactId>jersey-client</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>com.sun.jersey</groupId>
74             <artifactId>jersey-core</artifactId>
75         </dependency>
76     </dependencies>
77
78     <build>
79         <pluginManagement>
80             <plugins>
81                 <plugin>
82                     <groupId>org.eclipse.m2e</groupId>
83                     <artifactId>lifecycle-mapping</artifactId>
84                     <version>1.0.0</version>
85                     <configuration>
86                         <lifecycleMappingMetadata>
87                             <pluginExecutions>
88                                 <pluginExecution>
89                                     <pluginExecutionFilter>
90                                         <groupId>org.codehaus.mojo</groupId>
91                                         <artifactId>properties-maven-plugin</artifactId>
92                                         <versionRange>[1.0.0,)</versionRange>
93                                         <goals>
94                                             <goal>set-system-properties</goal>
95                                         </goals>
96                                     </pluginExecutionFilter>
97                                     <action>
98                                         <execute/>
99                                     </action>
100                                 </pluginExecution>
101                             </pluginExecutions>
102                         </lifecycleMappingMetadata>
103                     </configuration>
104                 </plugin>
105             </plugins>
106         </pluginManagement>
107     </build>
108
109 </project>