Manikandan K
Committed by Gerrit Code Review

ONOS-4361 OSPF Provider JUNIT

Change-Id: Ib02d2bd136ac8ff071aa6b562d9b5ab9011959b9
...@@ -46,10 +46,15 @@ ...@@ -46,10 +46,15 @@
46 </dependency> 46 </dependency>
47 <dependency> 47 <dependency>
48 <groupId>org.onosproject</groupId> 48 <groupId>org.onosproject</groupId>
49 + <artifactId>onos-ospf-ctl</artifactId>
50 + <version>${project.version}</version>
51 + </dependency>
52 + <dependency>
53 + <groupId>org.onosproject</groupId>
49 <artifactId>onos-api</artifactId> 54 <artifactId>onos-api</artifactId>
50 <classifier>tests</classifier> 55 <classifier>tests</classifier>
51 <scope>test</scope> 56 <scope>test</scope>
52 </dependency> 57 </dependency>
53 </dependencies> 58 </dependencies>
54 59
55 -</project>
...\ No newline at end of file ...\ No newline at end of file
60 +</project>
......
1 COMPILE_DEPS = [ 1 COMPILE_DEPS = [
2 '//lib:CORE_DEPS', 2 '//lib:CORE_DEPS',
3 '//protocols/ospf/api:onos-protocols-ospf-api', 3 '//protocols/ospf/api:onos-protocols-ospf-api',
4 + '//protocols/ospf/ctl:onos-protocols-ospf-ctl',
5 +]
6 +
7 +TEST_DEPS = [
8 + '//lib:TEST_ADAPTERS',
4 ] 9 ]
5 10
6 osgi_jar_with_tests ( 11 osgi_jar_with_tests (
7 deps = COMPILE_DEPS, 12 deps = COMPILE_DEPS,
13 + test_deps = TEST_DEPS,
8 ) 14 )
9 15
......