diff options
Diffstat (limited to 'infra/notification/impl/pom.xml')
-rw-r--r-- | infra/notification/impl/pom.xml | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/infra/notification/impl/pom.xml b/infra/notification/impl/pom.xml index 8817ba209..13ac71834 100644 --- a/infra/notification/impl/pom.xml +++ b/infra/notification/impl/pom.xml @@ -36,10 +36,6 @@ <version>${project.version}</version> </dependency> <dependency> - <groupId>org.opendaylight.controller</groupId> - <artifactId>sal-binding-config</artifactId> - </dependency> - <dependency> <groupId>org.opendaylight.netconf</groupId> <artifactId>netconf-notifications-api</artifactId> </dependency> @@ -47,6 +43,26 @@ <groupId>org.opendaylight.yangtools</groupId> <artifactId>yang-data-codec-xml</artifactId> </dependency> + <dependency> + <groupId>org.opendaylight.mdsal</groupId> + <artifactId>mdsal-binding-api</artifactId> + </dependency> + <dependency> + <groupId>org.opendaylight.mdsal</groupId> + <artifactId>mdsal-dom-spi</artifactId> + </dependency> + <dependency> + <groupId>org.opendaylight.controller</groupId> + <artifactId>sal-common-api</artifactId> + </dependency> + <dependency> + <groupId>org.opendaylight.controller</groupId> + <artifactId>sal-binding-api</artifactId> + </dependency> + <dependency> + <groupId>org.opendaylight.controller</groupId> + <artifactId>sal-core-spi</artifactId> + </dependency> <dependency> <groupId>junit</groupId> @@ -58,5 +74,15 @@ <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.opendaylight.mdsal</groupId> + <artifactId>mdsal-binding-generator-impl</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.opendaylight.mdsal</groupId> + <artifactId>mdsal-binding-generator-impl</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> |