You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by mc...@apache.org on 2010/05/06 17:11:52 UTC

svn commit: r941770 - in /geronimo/devtools/eclipse-plugin/trunk: plugins/org.apache.geronimo.runtime.v30/.classpath plugins/org.apache.geronimo.runtime.v30/META-INF/MANIFEST.MF plugins/org.apache.geronimo.runtime.v30/pom.xml pom.xml

Author: mcconne
Date: Thu May  6 15:11:52 2010
New Revision: 941770

URL: http://svn.apache.org/viewvc?rev=941770&view=rev
Log:
Fix NoClassDefFoundError errors for org/osgi/framework/Bundle on deploy

Modified:
    geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/.classpath
    geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/META-INF/MANIFEST.MF
    geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/pom.xml
    geronimo/devtools/eclipse-plugin/trunk/pom.xml

Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/.classpath
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/.classpath?rev=941770&r1=941769&r2=941770&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/.classpath (original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/.classpath Thu May  6 15:11:52 2010
@@ -32,4 +32,6 @@
     <classpathentry exported="true" kind="lib" path="lib/plexus-archiver-1.0-alpha-12.jar"/>
     <classpathentry exported="true" kind="lib" path="lib/slf4j-api-1.5.5.jar"/>
     <classpathentry exported="true" kind="lib" path="lib/slf4j-simple-1.5.5.jar"/>
+    <classpathentry exported="true" kind="lib" path="lib/org.osgi.core-4.2.0.jar"/>
+    <classpathentry exported="true" kind="lib" path="lib/org.osgi.compendium-4.2.0.jar"/>
 </classpath>
\ No newline at end of file

Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/META-INF/MANIFEST.MF?rev=941770&r1=941769&r2=941770&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/META-INF/MANIFEST.MF (original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/META-INF/MANIFEST.MF Thu May  6 15:11:52 2010
@@ -17,7 +17,9 @@ Bundle-ClassPath: lib/geronimo-common-3.
  lib/plexus-archiver-1.0-alpha-12.jar,
  lib/geronimo-crypto-3.0-SNAPSHOT.jar,
  lib/slf4j-api-1.5.5.jar,
- lib/slf4j-simple-1.5.5.jar
+ lib/slf4j-simple-1.5.5.jar,
+ lib/org.osgi.compendium-4.2.0.jar,
+ lib/org.osgi.core-4.2.0.jar
 Export-Package: 
  javax.enterprise.deploy.model,
  javax.enterprise.deploy.model.exceptions,

Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/pom.xml?rev=941770&r1=941769&r2=941770&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.runtime.v30/pom.xml Thu May  6 15:11:52 2010
@@ -165,6 +165,14 @@
                                     <groupId>org.slf4j</groupId>
                                     <artifactId>slf4j-simple</artifactId>
                                 </artifactItem>
+                                <artifactItem>
+                                    <groupId>org.osgi</groupId>
+                                    <artifactId>org.osgi.core</artifactId>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>org.osgi</groupId>
+                                    <artifactId>org.osgi.compendium</artifactId>
+                                </artifactItem>
                             </artifactItems>
                             <outputDirectory>lib</outputDirectory>
                         </configuration>

Modified: geronimo/devtools/eclipse-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/pom.xml?rev=941770&r1=941769&r2=941770&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/trunk/pom.xml Thu May  6 15:11:52 2010
@@ -236,6 +236,19 @@
                 <artifactId>selenium-core</artifactId>
                 <version>1.0-beta-1</version>
             </dependency>
+
+            <dependency>
+                <groupId>org.osgi</groupId>
+                <artifactId>org.osgi.core</artifactId>
+                <version>4.2.0</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.osgi</groupId>
+                <artifactId>org.osgi.compendium</artifactId>
+                <version>4.2.0</version>
+            </dependency>
+
         </dependencies>
     </dependencyManagement>