diff options
Diffstat (limited to 'it/api-test')
-rw-r--r-- | it/api-test/pom.xml | 8 | ||||
-rw-r--r-- | it/api-test/src/test/java/io/fd/hc2vpp/model/test/LeafRefContextTest.java | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/it/api-test/pom.xml b/it/api-test/pom.xml index d3d77d17d..855eb2fca 100644 --- a/it/api-test/pom.xml +++ b/it/api-test/pom.xml @@ -107,6 +107,14 @@ <artifactId>mdsal-binding-generator-impl</artifactId> </dependency> <dependency> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> diff --git a/it/api-test/src/test/java/io/fd/hc2vpp/model/test/LeafRefContextTest.java b/it/api-test/src/test/java/io/fd/hc2vpp/model/test/LeafRefContextTest.java index 8a49673c6..e11779a69 100644 --- a/it/api-test/src/test/java/io/fd/hc2vpp/model/test/LeafRefContextTest.java +++ b/it/api-test/src/test/java/io/fd/hc2vpp/model/test/LeafRefContextTest.java @@ -30,7 +30,7 @@ import java.util.Set; import java.util.stream.Collectors; import javax.annotation.Nonnull; import org.junit.Test; -import org.opendaylight.yangtools.sal.binding.generator.impl.ModuleInfoBackedContext; +import org.opendaylight.mdsal.binding.generator.impl.ModuleInfoBackedContext; import org.opendaylight.yangtools.yang.binding.YangModelBindingProvider; import org.opendaylight.yangtools.yang.binding.YangModuleInfo; import org.opendaylight.yangtools.yang.data.impl.leafref.LeafRefContext; |