blob: 39ff9a5cb9ade19c277757f5b3579e37a6fb0ca8 [file] [log] [blame]
CLAPP, GEORGE H (gc731h)10cd6192018-07-06 20:12:26 +00001<?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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>org.onap.ccsdk.parent</groupId>
8 <artifactId>binding-parent</artifactId>
9 <version>1.0.5-SNAPSHOT</version>
10 <relativePath />
11 </parent>
12
13 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
14 <artifactId>energysavings-provider</artifactId>
15 <version>0.2.4-SNAPSHOT</version>
16 <packaging>bundle</packaging>
17
18 <dependencyManagement>
19 <dependencies>
20 <dependency>
21 <groupId>org.opendaylight.controller</groupId>
22 <artifactId>mdsal-artifacts</artifactId>
23 <version>1.6.1</version>
24 <type>pom</type>
25 <scope>import</scope>
26 </dependency>
27 </dependencies>
28 </dependencyManagement>
29
30 <dependencies>
31 <dependency>
32 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
33 <artifactId>energysavings-model</artifactId>
34 <version>${project.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.opendaylight.controller</groupId>
38 <artifactId>sal-binding-config</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>org.opendaylight.controller</groupId>
42 <artifactId>sal-binding-api</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.opendaylight.controller</groupId>
46 <artifactId>sal-common-util</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.opendaylight.controller</groupId>
50 <artifactId>sal-core-api</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.opendaylight.yangtools</groupId>
54 <artifactId>yang-data-impl</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>junit</groupId>
58 <artifactId>junit</artifactId>
59 <!-- <version>${junit.version}</version> -->
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.mockito</groupId>
64 <artifactId>mockito-core</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>com.sun.jersey</groupId>
69 <artifactId>jersey-client</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>com.sun.jersey</groupId>
73 <artifactId>jersey-core</artifactId>
74 </dependency>
75 <!-- <dependency> -->
76 <!-- <groupId>org.onap.ccsdk.sli.core</groupId> -->
77 <!-- <artifactId>sli-common</artifactId> -->
78 <!-- <version>0.1.3</version> -->
79 <!-- </dependency> -->
80 <!-- <dependency> -->
81 <!-- <groupId>org.onap.ccsdk.sli.plugins</groupId> -->
82 <!-- <artifactId>restapi-call-node-provider</artifactId> -->
83 <!-- <version>0.1.0</version> -->
84 <!-- </dependency> -->
85 </dependencies>
86
87 <build>
88 <pluginManagement>
89 <plugins>
90 <plugin>
91 <groupId>org.eclipse.m2e</groupId>
92 <artifactId>lifecycle-mapping</artifactId>
93 <version>1.0.0</version>
94 <configuration>
95 <lifecycleMappingMetadata>
96 <pluginExecutions>
97 <pluginExecution>
98 <pluginExecutionFilter>
99 <groupId>org.codehaus.mojo</groupId>
100 <artifactId>properties-maven-plugin</artifactId>
101 <versionRange>[1.0.0,)</versionRange>
102 <goals>
103 <goal>set-system-properties</goal>
104 </goals>
105 </pluginExecutionFilter>
106 <action>
107 <execute />
108 </action>
109 </pluginExecution>
110 </pluginExecutions>
111 </lifecycleMappingMetadata>
112 </configuration>
113 </plugin>
114 </plugins>
115 </pluginManagement>
116 </build>
117
118</project>