Author: gnodet
Date: Mon Apr 26 09:25:19 2010
New Revision: 937978

URL: http://svn.apache.org/viewvc?rev=937978&view=rev
Log:
[bundlerepository] fix a NPE in the index goal

Modified:
    
felix/trunk/bundleplugin/src/main/java/org/apache/felix/obrplugin/ObrIndex.java

Modified: 
felix/trunk/bundleplugin/src/main/java/org/apache/felix/obrplugin/ObrIndex.java
URL: 
http://svn.apache.org/viewvc/felix/trunk/bundleplugin/src/main/java/org/apache/felix/obrplugin/ObrIndex.java?rev=937978&r1=937977&r2=937978&view=diff
==============================================================================
--- 
felix/trunk/bundleplugin/src/main/java/org/apache/felix/obrplugin/ObrIndex.java 
(original)
+++ 
felix/trunk/bundleplugin/src/main/java/org/apache/felix/obrplugin/ObrIndex.java 
Mon Apr 26 09:25:19 2010
@@ -97,7 +97,7 @@ public final class ObrIndex extends Abst
             log.info("URL template: " + urlTemplate);
 
             List<File> files = new ArrayList<File>();
-            findAllJars( new File(mavenRepository), files );
+            findAllJars( new File(repo), files );
 
             DataModelHelperImpl dmh = new DataModelHelperImpl();
             RepositoryImpl repository;


Reply via email to