pom changes to support snapshots
Change-Id: Ic02811e2cb806c7afb533b584267c199e5499b5d
diff --git a/pom.xml b/pom.xml
index 94bf851..2fd4ad2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
<groupId>org.onosproject</groupId>
<artifactId>onos</artifactId>
<version>1.7.0-SNAPSHOT</version>
- <relativePath></relativePath>
+ <relativePath></relativePath>
</parent>
<groupId>org.opencord</groupId>
@@ -67,12 +67,6 @@
<dependency>
<groupId>org.onosproject</groupId>
- <artifactId>onlab-junit</artifactId>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>org.onosproject</groupId>
<artifactId>onlab-osgi</artifactId>
<version>${onos.version}</version>
</dependency>
@@ -128,6 +122,32 @@
</dependency>
</dependencies>
+ <repositories>
+ <repository>
+ <id>central</id>
+ <name>Central Repository</name>
+ <url>http://repo.maven.apache.org/maven2</url>
+ <layout>default</layout>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ <checksumPolicy>fail</checksumPolicy>
+ </releases>
+ </repository>
+
+ <repository>
+ <id>snapshots</id>
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ <checksumPolicy>fail</checksumPolicy>
+ </snapshots>
+ </repository>
+ </repositories>
<build>
<plugins>