[maven-release-plugin]  copy for tag org.apache.felix.fileinstall-3.0.0

git-svn-id: https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.fileinstall-3.0.0@939933 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
index 7046468..4f39d61 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
   <name>Apache Felix File Install</name>
   <description>A utility to automatically install bundles from a directory.</description>
   <url>http://felix.apache.org/site/apache-felix-file-install.html</url>
-  <version>3.0.1-SNAPSHOT</version>
+  <version>3.0.0</version>
   <artifactId>org.apache.felix.fileinstall</artifactId>
   <dependencies>
     <dependency>
@@ -87,4 +87,10 @@
 	   </plugin>
     </plugins>
   </build>
+
+  <scm>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.fileinstall-3.0.0</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.fileinstall-3.0.0</developerConnection>
+    <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.fileinstall-3.0.0</url>
+  </scm>
 </project>
diff --git a/src/main/java/org/apache/felix/fileinstall/internal/BundleTransformer.java b/src/main/java/org/apache/felix/fileinstall/internal/BundleTransformer.java
index 00241de..563d895 100644
--- a/src/main/java/org/apache/felix/fileinstall/internal/BundleTransformer.java
+++ b/src/main/java/org/apache/felix/fileinstall/internal/BundleTransformer.java
@@ -49,8 +49,7 @@
             }
             jar = new JarFile(artifact);
             Manifest m = jar.getManifest();
-            if (m.getMainAttributes().getValue(new Attributes.Name("Bundle-SymbolicName")) != null
-                && m.getMainAttributes().getValue(new Attributes.Name("Bundle-Version")) != null)
+            if (m.getMainAttributes().getValue(new Attributes.Name("Bundle-SymbolicName")) != null)
             {
                 return true;
             }