Author: dblevins
Date: Tue Jun  5 20:36:27 2012
New Revision: 1346576

URL: http://svn.apache.org/viewvc?rev=1346576&view=rev
Log:
yank osgi, clean poms

Removed:
    
commons/sandbox/classscan/branches/commons-finder/src/main/java/org/apache/xbean/finder/BundleAnnotationFinder.java
    
commons/sandbox/classscan/branches/commons-finder/src/main/java/org/apache/xbean/finder/BundleAssignableClassFinder.java
    
commons/sandbox/classscan/branches/commons-finder/src/main/java/org/apache/xbean/finder/archive/BundleArchive.java
    commons/sandbox/classscan/branches/commons-finder/src/site/
Modified:
    commons/sandbox/classscan/branches/commons-finder/pom.xml

Modified: commons/sandbox/classscan/branches/commons-finder/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/sandbox/classscan/branches/commons-finder/pom.xml?rev=1346576&r1=1346575&r2=1346576&view=diff
==============================================================================
--- commons/sandbox/classscan/branches/commons-finder/pom.xml (original)
+++ commons/sandbox/classscan/branches/commons-finder/pom.xml Tue Jun  5 
20:36:27 2012
@@ -21,62 +21,50 @@
 <!-- $Rev: 432962 $ $Date: 2006-08-20 03:47:39 -0700 (Sun, 20 Aug 2006) $ -->
 
 <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";>
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <artifactId>xbean</artifactId>
-        <groupId>org.apache.xbean</groupId>
-        <version>3.12-SNAPSHOT</version>
-    </parent>
-    <artifactId>xbean-finder</artifactId>
-    <packaging>bundle</packaging>
-    <name>Apache XBean :: Classpath Resource Finder</name>
-    <description>XBean Finder helps to find annotations in 
classes</description>
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.xbean</groupId>
-            <artifactId>xbean-bundleutils</artifactId>  
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>asm</groupId>
-            <artifactId>asm</artifactId>
-            <version>3.2</version>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>asm</groupId>
-            <artifactId>asm-commons</artifactId>
-            <version>3.2</version>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.core</artifactId>
-            <version>4.2.0</version>
-            <scope>provided</scope>
-        </dependency>
-    </dependencies>
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <version>2.0.0</version>
-                <extensions>true</extensions>
-                <configuration>
-                    <instructions>
-                        
<Export-Package>org.apache.xbean.finder.*;version=${project.version}</Export-Package>
-                        <Import-Package>
-                            org.objectweb.asm;version=3.1,
-                            org.objectweb.asm.commons;version=3.1,
-                            *
-                        </Import-Package>
-                    </instructions>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>10</version>
+  </parent>
+
+  <groupId>org.apache.commons</groupId>
+  <artifactId>commons-finder</artifactId>
+  <version>0.1-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <name>Apache Commons:: Classpath Resource Finder</name>
+  <description>Commons Finder helps to find annotations in 
classes</description>
+  <dependencies>
+    <dependency>
+      <groupId>asm</groupId>
+      <artifactId>asm</artifactId>
+      <version>3.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>asm</groupId>
+      <artifactId>asm-commons</artifactId>
+      <version>3.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.10</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>


Reply via email to