[414713] Build with CBI Signed-off-by: Thanh Ha <thanh.ha@eclipse.org>
diff --git a/.gitignore b/.gitignore index 2716257..fb48065 100644 --- a/.gitignore +++ b/.gitignore
@@ -30,3 +30,6 @@ src.zip .fbwarnings javaCompiler...args + +# maven +target/
diff --git a/features/org.eclipse.wst.web_tests.feature/pom.xml b/features/org.eclipse.wst.web_tests.feature/pom.xml new file mode 100644 index 0000000..c790c3c --- /dev/null +++ b/features/org.eclipse.wst.web_tests.feature/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.web_tests.feature</artifactId> + <version>3.5.0-SNAPSHOT</version> + <packaging>eclipse-feature</packaging> +</project>
diff --git a/features/org.eclipse.wst.xml_tests.feature/pom.xml b/features/org.eclipse.wst.xml_tests.feature/pom.xml new file mode 100644 index 0000000..d4e4dc8 --- /dev/null +++ b/features/org.eclipse.wst.xml_tests.feature/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.xml_tests.feature</artifactId> + <version>3.5.0-SNAPSHOT</version> + <packaging>eclipse-feature</packaging> +</project>
diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..6e6f852 --- /dev/null +++ b/pom.xml
@@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.eclipse</groupId> + <artifactId>wtp-parent</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../wtp-parent</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <modules> + <module>features/org.eclipse.wst.web_tests.feature</module> + <module>features/org.eclipse.wst.xml_tests.feature</module> + + <module>tests/org.eclipse.jst.jsp.core.tests</module> + <module>tests/org.eclipse.jst.jsp.tests.encoding</module> + <module>tests/org.eclipse.jst.jsp.ui.tests</module> + <module>tests/org.eclipse.wst.css.core.tests</module> + <module>tests/org.eclipse.wst.css.tests.encoding</module> + <module>tests/org.eclipse.wst.css.ui.tests</module> + <module>tests/org.eclipse.wst.dtd.core.tests</module> + <module>tests/org.eclipse.wst.dtd.ui.tests</module> + <module>tests/org.eclipse.wst.html.core.tests</module> + <module>tests/org.eclipse.wst.html.tests.encoding</module> + <module>tests/org.eclipse.wst.html.ui.tests</module> + <module>tests/org.eclipse.wst.jsdt.web.core.tests</module> + <module>tests/org.eclipse.wst.jsdt.web.ui.tests</module> + <module>tests/org.eclipse.wst.sse.core.tests</module> + <module>tests/org.eclipse.wst.sse.ui.tests</module> + <module>tests/org.eclipse.wst.xml.catalog.tests</module> + <module>tests/org.eclipse.wst.xml.core.tests</module> + <module>tests/org.eclipse.wst.xml.tests.encoding</module> + <module>tests/org.eclipse.wst.xml.ui.tests</module> + <module>tests/org.eclipse.wst.xml.validation.tests</module> + <module>tests/org.eclipse.wst.xsd.core.tests</module> + <module>tests/org.eclipse.wst.xsd.ui.tests</module> + <module>tests/org.eclipse.wst.xsd.validation.tests</module> + </modules> +</project>
diff --git a/tests/org.eclipse.jst.jsp.core.tests/pom.xml b/tests/org.eclipse.jst.jsp.core.tests/pom.xml new file mode 100644 index 0000000..6e98dca --- /dev/null +++ b/tests/org.eclipse.jst.jsp.core.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.jst.jsp.core.tests</artifactId> + <version>1.0.700-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.jst.jsp.tests.encoding/pom.xml b/tests/org.eclipse.jst.jsp.tests.encoding/pom.xml new file mode 100644 index 0000000..689429a --- /dev/null +++ b/tests/org.eclipse.jst.jsp.tests.encoding/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.jst.jsp.tests.encoding</artifactId> + <version>1.0.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.jst.jsp.ui.tests/pom.xml b/tests/org.eclipse.jst.jsp.ui.tests/pom.xml new file mode 100644 index 0000000..224618c --- /dev/null +++ b/tests/org.eclipse.jst.jsp.ui.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.jst.jsp.ui.tests</artifactId> + <version>1.0.700-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.css.core.tests/pom.xml b/tests/org.eclipse.wst.css.core.tests/pom.xml new file mode 100644 index 0000000..1be49ba --- /dev/null +++ b/tests/org.eclipse.wst.css.core.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.css.core.tests</artifactId> + <version>1.0.800-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.css.tests.encoding/pom.xml b/tests/org.eclipse.wst.css.tests.encoding/pom.xml new file mode 100644 index 0000000..b0ba23d --- /dev/null +++ b/tests/org.eclipse.wst.css.tests.encoding/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.css.tests.encoding</artifactId> + <version>1.0.600-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.css.ui.tests/pom.xml b/tests/org.eclipse.wst.css.ui.tests/pom.xml new file mode 100644 index 0000000..3ccd3c6 --- /dev/null +++ b/tests/org.eclipse.wst.css.ui.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.css.ui.tests</artifactId> + <version>1.0.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.dtd.core.tests/pom.xml b/tests/org.eclipse.wst.dtd.core.tests/pom.xml new file mode 100644 index 0000000..b81835c --- /dev/null +++ b/tests/org.eclipse.wst.dtd.core.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.dtd.core.tests</artifactId> + <version>1.0.300-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.dtd.ui.tests/pom.xml b/tests/org.eclipse.wst.dtd.ui.tests/pom.xml new file mode 100644 index 0000000..a87ad0c --- /dev/null +++ b/tests/org.eclipse.wst.dtd.ui.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.dtd.ui.tests</artifactId> + <version>1.0.600-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.html.core.tests/pom.xml b/tests/org.eclipse.wst.html.core.tests/pom.xml new file mode 100644 index 0000000..0f5a25a --- /dev/null +++ b/tests/org.eclipse.wst.html.core.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.html.core.tests</artifactId> + <version>1.0.800-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.html.tests.encoding/pom.xml b/tests/org.eclipse.wst.html.tests.encoding/pom.xml new file mode 100644 index 0000000..40846db --- /dev/null +++ b/tests/org.eclipse.wst.html.tests.encoding/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.html.tests.encoding</artifactId> + <version>1.0.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.html.ui.tests/pom.xml b/tests/org.eclipse.wst.html.ui.tests/pom.xml new file mode 100644 index 0000000..bac13a6 --- /dev/null +++ b/tests/org.eclipse.wst.html.ui.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.html.ui.tests</artifactId> + <version>1.0.600-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.jsdt.web.core.tests/pom.xml b/tests/org.eclipse.wst.jsdt.web.core.tests/pom.xml new file mode 100644 index 0000000..87a96a9 --- /dev/null +++ b/tests/org.eclipse.wst.jsdt.web.core.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.jsdt.web.core.tests</artifactId> + <version>1.0.201-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.jsdt.web.ui.tests/pom.xml b/tests/org.eclipse.wst.jsdt.web.ui.tests/pom.xml new file mode 100644 index 0000000..2d31800 --- /dev/null +++ b/tests/org.eclipse.wst.jsdt.web.ui.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.jsdt.web.ui.tests</artifactId> + <version>1.0.300-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.sse.core.tests/pom.xml b/tests/org.eclipse.wst.sse.core.tests/pom.xml new file mode 100644 index 0000000..b8068ac --- /dev/null +++ b/tests/org.eclipse.wst.sse.core.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.sse.core.tests</artifactId> + <version>1.0.601-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.sse.ui.tests/pom.xml b/tests/org.eclipse.wst.sse.ui.tests/pom.xml new file mode 100644 index 0000000..6469fd0 --- /dev/null +++ b/tests/org.eclipse.wst.sse.ui.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.sse.ui.tests</artifactId> + <version>1.0.600-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.xml.catalog.tests/pom.xml b/tests/org.eclipse.wst.xml.catalog.tests/pom.xml new file mode 100644 index 0000000..35f0a3f --- /dev/null +++ b/tests/org.eclipse.wst.xml.catalog.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.xml.catalog.tests</artifactId> + <version>1.0.100-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.xml.core.tests/pom.xml b/tests/org.eclipse.wst.xml.core.tests/pom.xml new file mode 100644 index 0000000..95908f6 --- /dev/null +++ b/tests/org.eclipse.wst.xml.core.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.xml.core.tests</artifactId> + <version>1.0.800-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.xml.tests.encoding/pom.xml b/tests/org.eclipse.wst.xml.tests.encoding/pom.xml new file mode 100644 index 0000000..e2d12c8 --- /dev/null +++ b/tests/org.eclipse.wst.xml.tests.encoding/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.xml.tests.encoding</artifactId> + <version>1.0.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.xml.ui.tests/pom.xml b/tests/org.eclipse.wst.xml.ui.tests/pom.xml new file mode 100644 index 0000000..25604df --- /dev/null +++ b/tests/org.eclipse.wst.xml.ui.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.xml.ui.tests</artifactId> + <version>1.0.700-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.xml.validation.tests/pom.xml b/tests/org.eclipse.wst.xml.validation.tests/pom.xml new file mode 100644 index 0000000..0032624 --- /dev/null +++ b/tests/org.eclipse.wst.xml.validation.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.xml.validation.tests</artifactId> + <version>1.0.601-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.xsd.core.tests/pom.xml b/tests/org.eclipse.wst.xsd.core.tests/pom.xml new file mode 100644 index 0000000..efce3fc --- /dev/null +++ b/tests/org.eclipse.wst.xsd.core.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.xsd.core.tests</artifactId> + <version>1.0.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.xsd.ui.tests/pom.xml b/tests/org.eclipse.wst.xsd.ui.tests/pom.xml new file mode 100644 index 0000000..e4bc9d8 --- /dev/null +++ b/tests/org.eclipse.wst.xsd.ui.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.xsd.ui.tests</artifactId> + <version>1.0.100-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
diff --git a/tests/org.eclipse.wst.xsd.validation.tests/pom.xml b/tests/org.eclipse.wst.xsd.validation.tests/pom.xml new file mode 100644 index 0000000..960e2b0 --- /dev/null +++ b/tests/org.eclipse.wst.xsd.validation.tests/pom.xml
@@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Thanh Ha (Eclipse Foundation) - initial implementation +--> + +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.webtools.sourceediting.tests</artifactId> + <version>3.5.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.xsd.validation.tests</artifactId> + <version>1.0.501-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>