added org.osgi.core for BundleDependency annotation

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@916017 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/dependencymanager/annotation/pom.xml b/dependencymanager/annotation/pom.xml
index 146d7f7..a2daab3 100644
--- a/dependencymanager/annotation/pom.xml
+++ b/dependencymanager/annotation/pom.xml
@@ -14,7 +14,8 @@
     License for the specific language governing permissions and
     limitations under the License.
   -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix-parent</artifactId>
@@ -27,7 +28,7 @@
   <version>3.0.0-SNAPSHOT</version>
   <name>Apache Felix Dependency Manager Annotation</name>
   <packaging>maven-plugin</packaging>
-  
+
   <repositories>
     <repository>
       <id>maven2-repository.biz.aQute</id>
@@ -37,9 +38,15 @@
   </repositories>
 
   <description>DM annotation API, and corresponding scanner plugins</description>
-  
+
   <dependencies>
     <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.core</artifactId>
+      <version>4.1.0</version>
+    </dependency>
+
+    <dependency>
       <groupId>biz.aQute</groupId>
       <artifactId>bnd</artifactId>
       <version>0.0.394</version>
@@ -78,12 +85,12 @@
     <plugins>
       <!-- JDK 1.5 needed for annotation support -->
       <plugin>
-	<groupId>org.apache.maven.plugins</groupId>
-	<artifactId>maven-compiler-plugin</artifactId>
-	<configuration>
-	  <source>1.5</source>
-	  <target>1.5</target>
-	</configuration>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
       </plugin>
     </plugins>
   </build>