diff options
Diffstat (limited to 'infra/rpc')
-rw-r--r-- | infra/rpc/api/pom.xml | 4 | ||||
-rw-r--r-- | infra/rpc/impl/pom.xml | 15 |
2 files changed, 14 insertions, 5 deletions
diff --git a/infra/rpc/api/pom.xml b/infra/rpc/api/pom.xml index 4699a4c3e..0f13c35d1 100644 --- a/infra/rpc/api/pom.xml +++ b/infra/rpc/api/pom.xml @@ -34,6 +34,10 @@ <groupId>org.opendaylight.controller</groupId> <artifactId>sal-core-api</artifactId> </dependency> + <dependency> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + </dependency> </dependencies> </project> diff --git a/infra/rpc/impl/pom.xml b/infra/rpc/impl/pom.xml index cae70f026..631b9db56 100644 --- a/infra/rpc/impl/pom.xml +++ b/infra/rpc/impl/pom.xml @@ -36,11 +36,6 @@ <version>${project.version}</version> </dependency> <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-core</artifactId> - <scope>test</scope> - </dependency> - <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-binding-dom-codec</artifactId> </dependency> @@ -65,5 +60,15 @@ <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> |