Fix FELIX-2594 Have a way to create new custom iPojo handler without having to specify a handler usage
Allow to auto-attach primitive handlers to primitive components.
Handlers an be auto-attached if they are contained in the 'org.apache.felix.ipojo.handler.auto.primitive' system property. This property's value must be the list (command separated) of full handler name (namespace:name).

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1006281 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/tests/core/external-handlers/pom.xml b/ipojo/tests/core/external-handlers/pom.xml
index 727f2f4..f182bf2 100644
--- a/ipojo/tests/core/external-handlers/pom.xml
+++ b/ipojo/tests/core/external-handlers/pom.xml
@@ -70,16 +70,16 @@
 					<instructions>

 						<Export-Package>

 							org.apache.felix.ipojo.test.scenarios.eh.service

-						</Export-Package>

+							</Export-Package>

 						<Bundle-SymbolicName>

 							${project.artifactId}

-						</Bundle-SymbolicName>

+							</Bundle-SymbolicName>

 						<Private-Package>

 							org.apache.felix.ipojo.test*

-						</Private-Package>

+							</Private-Package>

 						<Test-Suite>

 							org.apache.felix.ipojo.test.scenarios.eh.ExternalHandlerTestSuite

-						</Test-Suite>

+							</Test-Suite>

 					</instructions>

 				</configuration>

 			</plugin>

@@ -105,6 +105,19 @@
 					<target>1.4</target>

 				</configuration>

 			</plugin>

+

+			<plugin>

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

+				<artifactId>maven-junit4osgi-plugin</artifactId>

+				<version>1.1.0-SNAPSHOT</version>

+				<executions>

+					<execution>

+						<goals>

+							<goal>test</goal>

+						</goals>

+					</execution>

+				</executions>

+			</plugin>

 		</plugins>

 	</build>

 </project>