Fix pom for autosuggest, include jstestrunner

Still a missing dependency to mozilla.javascript (Rhino),
if we include it in the target, at least the autosuggest.test should run.
diff --git a/bundles/org.eclipse.rap.addons.autosuggest/pom.xml b/bundles/org.eclipse.rap.addons.autosuggest/pom.xml
index 27cdec3..b82548d 100644
--- a/bundles/org.eclipse.rap.addons.autosuggest/pom.xml
+++ b/bundles/org.eclipse.rap.addons.autosuggest/pom.xml
@@ -21,7 +21,7 @@
     <relativePath>../../../org.eclipse.rap.incubator.releng/releng/org.eclipse.rap.incubator.releng/parent</relativePath>
   </parent>
 
-  <artifactId>org.eclipse.rap.addons.dropdown</artifactId>
+  <artifactId>org.eclipse.rap.addons.autosuggest</artifactId>
   <version>0.1.0-SNAPSHOT</version>
   <packaging>eclipse-plugin</packaging>
 
diff --git a/releng/org.eclipse.rap.dropdown.build/pom.xml b/releng/org.eclipse.rap.dropdown.build/pom.xml
index 4cb10a5..77a4017 100644
--- a/releng/org.eclipse.rap.dropdown.build/pom.xml
+++ b/releng/org.eclipse.rap.dropdown.build/pom.xml
@@ -30,8 +30,9 @@
     <module>../../bundles/org.eclipse.rap.addons.autosuggest</module>
     <!--
     <module>../../tests/org.eclipse.rap.addons.dropdown.test</module>
-     -->
     <module>../../tests/org.eclipse.rap.addons.autosuggest.test</module>
+    <module>../../tests/org.eclipse.rap.jstestrunner</module>
+     -->
     <module>../../features/org.eclipse.rap.dropdown.feature</module>
     <module>repository</module>
   </modules>
diff --git a/tests/org.eclipse.rap.jstestrunner/pom.xml b/tests/org.eclipse.rap.jstestrunner/pom.xml
new file mode 100644
index 0000000..e7c96e6
--- /dev/null
+++ b/tests/org.eclipse.rap.jstestrunner/pom.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright (C) 2013 EclipseSource and others.
+  All rights reserved. This program and the accompanying materials
+  are made available under the terms of the Eclipse Public License v1.0
+  which accompanies this distribution, and is available at
+  http://www.eclipse.org/legal/epl-v10.html
+
+  Contributors:
+     EclipseSource - initial implementation
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.eclipse.rap.incubator</groupId>
+    <artifactId>org.eclipse.rap.incubator-parent</artifactId>
+    <version>0.1.0-SNAPSHOT</version>
+    <relativePath>../../../org.eclipse.rap.incubator.releng/releng/org.eclipse.rap.incubator.releng/parent</relativePath>
+  </parent>
+
+  <artifactId>org.eclipse.rap.jstestrunner</artifactId>
+  <version>0.1.0-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+
+</project>