Jonathan Hart

Moved persistence tests to correct directory so they are not part of runtime bundle

Change-Id: Iae5d4d4b48c15873ff77c2fd6be9d1d2fcaea5a2
...@@ -46,20 +46,21 @@ ...@@ -46,20 +46,21 @@
46 46
47 47
48 <dependencies> 48 <dependencies>
49 - <dependency> 49 + <!--<dependency>
50 + <groupId>org.onosproject</groupId>
51 + <artifactId>onos-api</artifactId>
52 + </dependency>-->
53 + <dependency>
50 <groupId>org.onosproject</groupId> 54 <groupId>org.onosproject</groupId>
51 <artifactId>onos-api</artifactId> 55 <artifactId>onos-api</artifactId>
56 + <classifier>tests</classifier>
57 + <scope>test</scope>
52 </dependency> 58 </dependency>
53 <dependency> 59 <dependency>
54 <groupId>org.mapdb</groupId> 60 <groupId>org.mapdb</groupId>
55 <artifactId>mapdb</artifactId> 61 <artifactId>mapdb</artifactId>
56 <version>1.0.8</version> 62 <version>1.0.8</version>
57 </dependency> 63 </dependency>
58 - <dependency>
59 - <groupId>org.junit</groupId>
60 - <artifactId>com.springsource.org.junit</artifactId>
61 - <version>4.11.0</version>
62 - </dependency>
63 </dependencies> 64 </dependencies>
64 65
65 </project> 66 </project>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 16
17 -package org.onosproject.persistence.impl.test; 17 +package test;
18 18
19 import com.google.common.collect.Maps; 19 import com.google.common.collect.Maps;
20 import org.junit.After; 20 import org.junit.After;
...@@ -242,4 +242,4 @@ public class PersistentMapTest { ...@@ -242,4 +242,4 @@ public class PersistentMapTest {
242 map.put(i, i); 242 map.put(i, i);
243 } 243 }
244 } 244 }
245 -}
...\ No newline at end of file ...\ No newline at end of file
245 +}
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 16
17 -package org.onosproject.persistence.impl.test; 17 +package test;
18 18
19 import com.google.common.collect.Sets; 19 import com.google.common.collect.Sets;
20 import org.junit.After; 20 import org.junit.After;
...@@ -271,4 +271,4 @@ public class PersistentSetTest { ...@@ -271,4 +271,4 @@ public class PersistentSetTest {
271 set.add(i); 271 set.add(i);
272 } 272 }
273 } 273 }
274 -}
...\ No newline at end of file ...\ No newline at end of file
274 +}
......