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