Update TCK to pick up SNAPSHOTs from Maven central
diff --git a/tck/pom.xml b/tck/pom.xml
index 1cfd64d..fb0e76b 100644
--- a/tck/pom.xml
+++ b/tck/pom.xml
@@ -22,7 +22,7 @@
      <parent>
         <groupId>org.eclipse.ee4j</groupId>
         <artifactId>project</artifactId>
-        <version>1.0.9</version>
+        <version>2.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
 
@@ -241,4 +241,18 @@
 
     </profiles>
 
+    <!-- Required if parent is a SNAPSHOT and to pickup SNAPSHOT dependencies -->
+    <repositories>
+        <repository>
+            <name>Central Portal Snapshots</name>
+            <id>central-portal-snapshots</id>
+            <url>https://central.sonatype.com/repository/maven-snapshots/</url>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+            <snapshots>
+                <enabled>true</enabled>
+            </snapshots>
+        </repository>
+    </repositories>
 </project>