[431856] [CBI] Enable JUnit tests for sourceediting.tests repo - xsd dependency on schemas to avoid remote request
diff --git a/tests/org.eclipse.wst.xsd.core.tests/pom.xml b/tests/org.eclipse.wst.xsd.core.tests/pom.xml index ada7279..6f73270 100644 --- a/tests/org.eclipse.wst.xsd.core.tests/pom.xml +++ b/tests/org.eclipse.wst.xsd.core.tests/pom.xml
@@ -29,4 +29,28 @@ <testSuite>${project.artifactId}</testSuite> <testClass>org.eclipse.wst.xsd.core.tests.internal.AllXSDCoreTests</testClass> </properties> + + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-surefire-plugin</artifactId> + <version>${tycho.version}</version> + <configuration> + <dependencies> + <dependency> + <type>p2-installable-unit</type> + <artifactId>org.eclipse.wst.standard.schemas</artifactId> + <version>0.0.0</version> + </dependency> + <dependency> + <type>p2-installable-unit</type> + <artifactId>org.eclipse.jst.standard.schemas</artifactId> + <version>0.0.0</version> + </dependency> + </dependencies> + </configuration> + </plugin> + </plugins> + </build> </project>