CLAPP, GEORGE H (gc731h) | 10cd619 | 2018-07-06 20:12:26 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame] | 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"> |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
CLAPP, GEORGE H (gc731h) | 10cd619 | 2018-07-06 20:12:26 +0000 | [diff] [blame] | 4 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>binding-parent</artifactId> |
Dan Timoney | bc0f2d7 | 2020-01-23 14:42:42 -0500 | [diff] [blame] | 8 | <version>1.5.1</version> |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 9 | <relativePath/> |
| 10 | </parent> |
CLAPP, GEORGE H (gc731h) | 10cd619 | 2018-07-06 20:12:26 +0000 | [diff] [blame] | 11 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 12 | <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId> |
| 13 | <artifactId>energysavings-provider</artifactId> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 14 | <version>0.7.0-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 15 | <packaging>bundle</packaging> |
CLAPP, GEORGE H (gc731h) | 10cd619 | 2018-07-06 20:12:26 +0000 | [diff] [blame] | 16 | |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 17 | <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name> |
| 18 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 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 | |
CLAPP, GEORGE H (gc731h) | 10cd619 | 2018-07-06 20:12:26 +0000 | [diff] [blame] | 31 | <dependencies> |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 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> |
CLAPP, GEORGE H (gc731h) | 10cd619 | 2018-07-06 20:12:26 +0000 | [diff] [blame] | 76 | </dependencies> |
CLAPP, GEORGE H (gc731h) | 10cd619 | 2018-07-06 20:12:26 +0000 | [diff] [blame] | 77 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 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> |
CLAPP, GEORGE H (gc731h) | 10cd619 | 2018-07-06 20:12:26 +0000 | [diff] [blame] | 108 | |
| 109 | </project> |