Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2013-08-12 15:58:21 +0000
committerMike Rennie2013-08-12 15:58:35 +0000
commitba100f3145faf0ef3d5a74fde65bd50671d56717 (patch)
treeddce4e80c62e1db155e75971ab18d091afd5233f
parent85ece13ee3350bb257b01c68eda34f1ace01d265 (diff)
downloadwebtools.jsdt-ba100f3145faf0ef3d5a74fde65bd50671d56717.tar.gz
webtools.jsdt-ba100f3145faf0ef3d5a74fde65bd50671d56717.tar.xz
webtools.jsdt-ba100f3145faf0ef3d5a74fde65bd50671d56717.zip
Bug 414708 - [CBI] webtools.jsdt.tests patches
-rw-r--r--.gitignore3
-rw-r--r--features/org.eclipse.wst.jsdt_tests.feature/pom.xml27
-rw-r--r--pom.xml38
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.compiler/pom.xml27
-rw-r--r--tests/org.eclipse.wst.jsdt.core.tests.model/pom.xml27
-rw-r--r--tests/org.eclipse.wst.jsdt.debug.core.tests/pom.xml27
-rw-r--r--tests/org.eclipse.wst.jsdt.debug.rhino.tests/pom.xml27
7 files changed, 176 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 749e0750e..1e8d46290 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,3 +30,6 @@ temp.folder
src.zip
.fbwarnings
javaCompiler...args
+
+# maven
+target/
diff --git a/features/org.eclipse.wst.jsdt_tests.feature/pom.xml b/features/org.eclipse.wst.jsdt_tests.feature/pom.xml
new file mode 100644
index 000000000..fb13ac1be
--- /dev/null
+++ b/features/org.eclipse.wst.jsdt_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.jsdt</groupId>
+ <artifactId>org.eclipse.webtools.jsdt.tests</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.jsdt</groupId>
+ <artifactId>org.eclipse.wst.jsdt_tests.feature</artifactId>
+ <version>1.4.1-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 000000000..3be8bd4dd
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,38 @@
+<?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.jsdt</groupId>
+ <artifactId>org.eclipse.webtools.jsdt.tests</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>features/org.eclipse.wst.jsdt_tests.feature</module>
+
+ <module>tests/org.eclipse.wst.jsdt.core.tests.compiler</module>
+ <module>tests/org.eclipse.wst.jsdt.core.tests.model</module>
+ <module>tests/org.eclipse.wst.jsdt.debug.core.tests</module>
+ <module>tests/org.eclipse.wst.jsdt.debug.rhino.tests</module>
+ <module>tests/org.eclipse.wst.jsdt.ui.tests</module>
+ </modules>
+</project>
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.compiler/pom.xml b/tests/org.eclipse.wst.jsdt.core.tests.compiler/pom.xml
new file mode 100644
index 000000000..d1d0372a4
--- /dev/null
+++ b/tests/org.eclipse.wst.jsdt.core.tests.compiler/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.jsdt</groupId>
+ <artifactId>org.eclipse.webtools.jsdt.tests</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.jsdt</groupId>
+ <artifactId>org.eclipse.wst.jsdt.core.tests.compiler</artifactId>
+ <version>1.0.502-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/tests/org.eclipse.wst.jsdt.core.tests.model/pom.xml b/tests/org.eclipse.wst.jsdt.core.tests.model/pom.xml
new file mode 100644
index 000000000..d8261963b
--- /dev/null
+++ b/tests/org.eclipse.wst.jsdt.core.tests.model/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.jsdt</groupId>
+ <artifactId>org.eclipse.webtools.jsdt.tests</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.jsdt</groupId>
+ <artifactId>org.eclipse.wst.jsdt.core.tests.model</artifactId>
+ <version>1.0.502-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/tests/org.eclipse.wst.jsdt.debug.core.tests/pom.xml b/tests/org.eclipse.wst.jsdt.debug.core.tests/pom.xml
new file mode 100644
index 000000000..c37d83cad
--- /dev/null
+++ b/tests/org.eclipse.wst.jsdt.debug.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.jsdt</groupId>
+ <artifactId>org.eclipse.webtools.jsdt.tests</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.jsdt</groupId>
+ <artifactId>org.eclipse.wst.jsdt.debug.core.tests</artifactId>
+ <version>1.0.300-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/tests/org.eclipse.wst.jsdt.debug.rhino.tests/pom.xml b/tests/org.eclipse.wst.jsdt.debug.rhino.tests/pom.xml
new file mode 100644
index 000000000..4b2928a6d
--- /dev/null
+++ b/tests/org.eclipse.wst.jsdt.debug.rhino.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.jsdt</groupId>
+ <artifactId>org.eclipse.webtools.jsdt.tests</artifactId>
+ <version>3.5.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.webtools.jsdt</groupId>
+ <artifactId>org.eclipse.wst.jsdt.debug.rhino.tests</artifactId>
+ <version>1.0.400-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>

Back to the top