Modified dependency graph for:
- basedriver; dependency with extra bundle is not more needed. Now the basedriver directly exports the interfaces of the services it registers with the framework (DriverController.java and DevicesInfo.java)
- extra bundle provides only common utilities to write OSGi/UPnP Device services. It is used by the examples
- tv, clock and bynarylight use the extra packages (except for UPnpSubscriber; to do later)
- tester use the basedriver packages for forcing MSearch and Debugging and for resolving  relative URLs

Added thread name to TVFrame.class and ClockFrame.class

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@608127 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/upnp/tester/pom.xml b/upnp/tester/pom.xml
index f17f4fe..e867d49 100644
--- a/upnp/tester/pom.xml
+++ b/upnp/tester/pom.xml
@@ -1,38 +1,17 @@
-<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/maven-v4_0_0.xsd">

+<?xml version="1.0" encoding="UTF-8"?>

+<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/maven-v4_0_0.xsd">

   <parent>

-    <groupId>org.apache.felix</groupId>

     <artifactId>felix</artifactId>

+    <groupId>org.apache.felix</groupId>

     <version>1.1.0-SNAPSHOT</version>

     <relativePath>../pom/pom.xml</relativePath>

   </parent>

   <modelVersion>4.0.0</modelVersion>

-  <packaging>bundle</packaging>

   <groupId>org.apache.felix</groupId>

-  <name>Apache Felix UPnP Tester</name>

   <artifactId>org.apache.felix.upnp.tester</artifactId>

+  <packaging>bundle</packaging>

+  <name>Apache Felix UPnP Tester</name>

   <version>0.2.0-SNAPSHOT</version>

-  <!-- <url>http://maven.apache.org</url> -->

-  <dependencies>

-    <dependency>

-      <groupId>${pom.groupId}</groupId>

-      <artifactId>org.osgi.core</artifactId>

-      <version>1.1.0-SNAPSHOT</version>

-      <scope>provided</scope>

-    </dependency>

-    <dependency>

-      <groupId>${pom.groupId}</groupId>

-      <artifactId>org.osgi.compendium</artifactId>

-      <version>0.9.0-SNAPSHOT</version>

-      <scope>provided</scope>

-    </dependency>

-    <dependency>

-      <groupId>org.apache.felix</groupId>

-      <artifactId>org.apache.felix.upnp.extra</artifactId>

-      <version>0.3.0-SNAPSHOT</version>

-      <scope>provided</scope>

-    </dependency>

-  </dependencies>

   <build>

     <plugins>

       <plugin>

@@ -57,4 +36,32 @@
       </plugin>

     </plugins>

   </build>

+  <dependencies>

+    <dependency>

+      <groupId>${pom.groupId}</groupId>

+      <artifactId>org.osgi.core</artifactId>

+      <version>1.1.0-SNAPSHOT</version>

+      <scope>provided</scope>

+    </dependency>

+    <dependency>

+      <groupId>${pom.groupId}</groupId>

+      <artifactId>org.osgi.compendium</artifactId>

+      <version>0.9.0-SNAPSHOT</version>

+      <scope>provided</scope>

+    </dependency>

+    <dependency>

+      <groupId>org.apache.felix</groupId>

+      <artifactId>org.apache.felix.upnp.basedriver</artifactId>

+      <version>0.3.0-SNAPSHOT</version>

+    </dependency>

+     <!-- dependency>

+       Note: this dependency might be restored when (if) a converter utility will be exposed by extra bundle.

+       So far Tester uses the Converter class of the basedriver (it should be fixed)

+      <groupId>org.apache.felix</groupId>

+      <artifactId>org.apache.felix.upnp.extra</artifactId>

+      <version>0.3.0-SNAPSHOT</version>

+      <scope>provided</scope>

+    </dependency -->

+  </dependencies>

 </project>

+