Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -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"> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 4 | |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>binding-parent</artifactId> |
Dan Timoney | 000a7a0 | 2024-10-21 16:57:55 -0400 | [diff] [blame^] | 8 | <version>3.0.1-SNAPSHOT</version> |
Dan Timoney | 5de8196 | 2021-01-26 13:15:47 -0500 | [diff] [blame] | 9 | <relativePath/> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 10 | </parent> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 11 | |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 12 | <groupId>org.onap.ccsdk.sli.northbound</groupId> |
| 13 | <artifactId>dataChange-provider</artifactId> |
Dan Timoney | e477961 | 2024-10-03 16:10:21 -0400 | [diff] [blame] | 14 | <version>2.0.1-SNAPSHOT</version> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 15 | <packaging>bundle</packaging> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 16 | |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 17 | <name>ccsdk-sli-northbound :: ${project.artifactId}</name> |
shashikanth | 20806dd | 2017-10-03 16:58:51 +0530 | [diff] [blame] | 18 | |
Timoney, Dan (dt5972) | 90adbb6 | 2018-12-20 14:29:35 -0500 | [diff] [blame] | 19 | <dependencyManagement> |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 20 | <dependencies> |
| 21 | <dependency> |
| 22 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 23 | <artifactId>sli-core-artifacts</artifactId> |
| 24 | <version>${project.version}</version> |
| 25 | <type>pom</type> |
| 26 | <scope>import</scope> |
| 27 | </dependency> |
| 28 | </dependencies> |
Timoney, Dan (dt5972) | 90adbb6 | 2018-12-20 14:29:35 -0500 | [diff] [blame] | 29 | </dependencyManagement> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>org.onap.ccsdk.sli.northbound</groupId> |
| 33 | <artifactId>dataChange-model</artifactId> |
| 34 | <version>${project.version}</version> |
| 35 | </dependency> |
shashikanth | 20806dd | 2017-10-03 16:58:51 +0530 | [diff] [blame] | 36 | |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 37 | <dependency> |
Michael DÜrre | 56c27da | 2021-01-18 05:41:16 +0100 | [diff] [blame] | 38 | <groupId>org.opendaylight.mdsal</groupId> |
| 39 | <artifactId>mdsal-binding-api</artifactId> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 43 | <artifactId>sli-common</artifactId> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 47 | <artifactId>sli-provider</artifactId> |
| 48 | </dependency> |
| 49 | |
| 50 | <dependency> |
Michael DÜrre | 56c27da | 2021-01-18 05:41:16 +0100 | [diff] [blame] | 51 | <groupId>org.opendaylight.mdsal</groupId> |
| 52 | <artifactId>mdsal-binding-test-model</artifactId> |
Dan Timoney | 0e4e58b | 2021-01-29 17:42:42 +0000 | [diff] [blame] | 53 | <scope>test</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
Michael DÜrre | 56c27da | 2021-01-18 05:41:16 +0100 | [diff] [blame] | 56 | <groupId>org.opendaylight.mdsal</groupId> |
| 57 | <artifactId>mdsal-dom-api</artifactId> |
Dan Timoney | 0e4e58b | 2021-01-29 17:42:42 +0000 | [diff] [blame] | 58 | <scope>test</scope> |
| 59 | </dependency> |
Michael DÜrre | 56c27da | 2021-01-18 05:41:16 +0100 | [diff] [blame] | 60 | |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 61 | <!-- <dependency> --> |
| 62 | <!-- <groupId>org.opendaylight.controller</groupId> --> |
| 63 | <!-- <artifactId>sal-binding-broker-impl</artifactId> --> |
| 64 | <!-- <scope>test</scope> --> |
| 65 | <!-- </dependency> --> |
| 66 | <!-- <dependency> --> |
| 67 | <!-- <groupId>org.opendaylight.controller</groupId> --> |
| 68 | <!-- <artifactId>sal-binding-broker-impl</artifactId> --> |
| 69 | <!-- <type>test-jar</type> --> |
| 70 | <!-- <classifier>tests</classifier> --> |
| 71 | <!-- <scope>test</scope> --> |
| 72 | <!-- </dependency> --> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>junit</groupId> |
| 75 | <artifactId>junit</artifactId> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.testng</groupId> |
| 80 | <artifactId>testng</artifactId> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 81 | <scope>test</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.mockito</groupId> |
| 85 | <artifactId>mockito-core</artifactId> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | </dependencies> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 89 | </project> |