Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | 9560e60 | 2019-04-24 16:04:56 -0400 | [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"> |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [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) | c74f6af | 2019-07-11 08:47:49 -0400 | [diff] [blame] | 8 | <version>1.4.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 9560e60 | 2019-04-24 16:04:56 -0400 | [diff] [blame] | 9 | <relativePath/> |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId> |
| 13 | <artifactId>oofpcipoc-provider</artifactId> |
Timoney, Dan (dt5972) | c74f6af | 2019-07-11 08:47:49 -0400 | [diff] [blame] | 14 | <version>0.6.0-SNAPSHOT</version> |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 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 | |
| 27 | <dependency> |
| 28 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 29 | <artifactId>sli-core-artifacts</artifactId> |
| 30 | <version>${ccsdk.sli.core.version}</version> |
| 31 | <type>pom</type> |
| 32 | <scope>import</scope> |
| 33 | </dependency> |
| 34 | |
| 35 | </dependencies> |
| 36 | </dependencyManagement> |
| 37 | |
| 38 | |
| 39 | |
| 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId> |
| 43 | <artifactId>oofpcipoc-model</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | <!-- |
| 47 | <dependency> |
| 48 | <groupId>org.opendaylight.controller</groupId> |
| 49 | <artifactId>sal-binding-config</artifactId> |
| 50 | </dependency> |
| 51 | --> |
| 52 | <dependency> |
| 53 | <groupId>org.opendaylight.controller</groupId> |
| 54 | <artifactId>sal-binding-api</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.opendaylight.controller</groupId> |
| 58 | <artifactId>sal-common-util</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.opendaylight.controller</groupId> |
| 62 | <artifactId>sal-core-api</artifactId> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.opendaylight.yangtools</groupId> |
| 66 | <artifactId>yang-data-impl</artifactId> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>junit</groupId> |
| 70 | <artifactId>junit</artifactId> |
| 71 | <scope>test</scope> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.mockito</groupId> |
| 75 | <artifactId>mockito-core</artifactId> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
| 78 | |
| 79 | <dependency> |
| 80 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 81 | <artifactId>sli-common</artifactId> |
| 82 | <scope>compile</scope> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 86 | <artifactId>sli-provider</artifactId> |
| 87 | <scope>compile</scope> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 91 | <artifactId>utils-provider</artifactId> |
| 92 | <!-- <version>${sdnctl.sli.version}</version> --> |
| 93 | </dependency> |
| 94 | |
| 95 | |
| 96 | </dependencies> |
| 97 | |
| 98 | <build> |
| 99 | <pluginManagement> |
| 100 | <plugins> |
| 101 | <plugin> |
| 102 | <groupId>org.eclipse.m2e</groupId> |
| 103 | <artifactId>lifecycle-mapping</artifactId> |
| 104 | <version>1.0.0</version> |
| 105 | <configuration> |
| 106 | <lifecycleMappingMetadata> |
| 107 | <pluginExecutions> |
| 108 | <pluginExecution> |
| 109 | <pluginExecutionFilter> |
| 110 | <groupId>org.codehaus.mojo</groupId> |
| 111 | <artifactId>properties-maven-plugin</artifactId> |
| 112 | <versionRange>[1.0.0,)</versionRange> |
| 113 | <goals> |
| 114 | <goal>set-system-properties</goal> |
| 115 | </goals> |
| 116 | </pluginExecutionFilter> |
| 117 | <action> |
Timoney, Dan (dt5972) | 9560e60 | 2019-04-24 16:04:56 -0400 | [diff] [blame] | 118 | <execute/> |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 119 | </action> |
| 120 | </pluginExecution> |
| 121 | </pluginExecutions> |
| 122 | </lifecycleMappingMetadata> |
| 123 | </configuration> |
| 124 | </plugin> |
| 125 | </plugins> |
| 126 | </pluginManagement> |
| 127 | </build> |
| 128 | |
| 129 | </project> |