Ignore Maven's default value for -DobrRepository command-line setting

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@618590 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/maven-obr-plugin/src/main/java/org/apache/felix/obr/plugin/ObrUtils.java b/maven-obr-plugin/src/main/java/org/apache/felix/obr/plugin/ObrUtils.java
index c68052b..94728a0 100644
--- a/maven-obr-plugin/src/main/java/org/apache/felix/obr/plugin/ObrUtils.java
+++ b/maven-obr-plugin/src/main/java/org/apache/felix/obr/plugin/ObrUtils.java
@@ -51,7 +51,7 @@
         String targetPath = obrRepository;
 
         // Combine location settings into a single repository location
-        if ( null == targetPath || targetPath.trim().length() == 0 )
+        if ( null == targetPath || targetPath.trim().length() == 0 || "true".equalsIgnoreCase( targetPath ) )
         {
             targetPath = mavenRepository + '/' + REPO_XML;
         }