blob: 0f5cde130c4bb252c29e85e4c2892a1dd0446c03 [file] [log] [blame]
CLAPP, GEORGE H (gc731h)10cd6192018-07-06 20:12:26 +00001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -05002<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">
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -05003 <modelVersion>4.0.0</modelVersion>
CLAPP, GEORGE H (gc731h)10cd6192018-07-06 20:12:26 +00004
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
8 <version>1.5.1-SNAPSHOT</version>
9 <relativePath/>
10 </parent>
CLAPP, GEORGE H (gc731h)10cd6192018-07-06 20:12:26 +000011
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050012 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
13 <artifactId>energysavings-provider</artifactId>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050014 <version>0.7.0-SNAPSHOT</version>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050015 <packaging>bundle</packaging>
CLAPP, GEORGE H (gc731h)10cd6192018-07-06 20:12:26 +000016
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050017 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
18
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050019 <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
CLAPP, GEORGE H (gc731h)10cd6192018-07-06 20:12:26 +000031 <dependencies>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050032 <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>
CLAPP, GEORGE H (gc731h)10cd6192018-07-06 20:12:26 +000076 </dependencies>
CLAPP, GEORGE H (gc731h)10cd6192018-07-06 20:12:26 +000077
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050078 <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>
CLAPP, GEORGE H (gc731h)10cd6192018-07-06 20:12:26 +0000108
109</project>