FELIX-2755 Allow the manipulator and the different front end to use several metadata files

If src/main/ipojo and target/classes/metadata.xml do not exist, try ./metadata.xml

This was the previous behavior, broken by the last commit.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1054437 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/plugin/src/main/java/org/apache/felix/ipojo/plugin/ManipulatorMojo.java b/ipojo/plugin/src/main/java/org/apache/felix/ipojo/plugin/ManipulatorMojo.java
index 4f0e18d..6d13735 100644
--- a/ipojo/plugin/src/main/java/org/apache/felix/ipojo/plugin/ManipulatorMojo.java
+++ b/ipojo/plugin/src/main/java/org/apache/felix/ipojo/plugin/ManipulatorMojo.java
@@ -150,7 +150,7 @@
             		File meta = new File(m_outputDirectory + File.separator + "metadata.xml");
             		if (! meta.exists()) {
             			// If it still does not exist, try ./metadata.xml
-                        meta = new File(m_project.getBasedir() + File.separator + m_metadata);
+                        meta = new File(m_project.getBasedir() + File.separator + "metadata.xml");
                     }
 
             		if (meta.exists()) {