You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2008/05/28 12:58:16 UTC

svn commit: r660902 - in /directory/studio/branches/apacheds-plugin-branch/apacheds: META-INF/MANIFEST.MF plugin.xml pom.xml src/main/java/org/apache/directory/studio/apacheds/perspectives/

Author: pamarcelot
Date: Wed May 28 03:58:16 2008
New Revision: 660902

URL: http://svn.apache.org/viewvc?rev=660902&view=rev
Log:
o Removed the Perspective.
o Added the 'Eclipse-BuddyPolicy: registered' property in the Studio Jars plugin's manifest to allow using Eclipse buddy class loading.
o Removed the dom4j and log4j dependencies of the Studio Apache DS plugin, and added a dependency to the Studio Jars plugin (also registering the plugin as buddy with the 'Eclipse-RegisterBuddy: org.apache.directory.studio.jars' property).

Removed:
    directory/studio/branches/apacheds-plugin-branch/apacheds/src/main/java/org/apache/directory/studio/apacheds/perspectives/
Modified:
    directory/studio/branches/apacheds-plugin-branch/apacheds/META-INF/MANIFEST.MF
    directory/studio/branches/apacheds-plugin-branch/apacheds/plugin.xml
    directory/studio/branches/apacheds-plugin-branch/apacheds/pom.xml

Modified: directory/studio/branches/apacheds-plugin-branch/apacheds/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/directory/studio/branches/apacheds-plugin-branch/apacheds/META-INF/MANIFEST.MF?rev=660902&r1=660901&r2=660902&view=diff
==============================================================================
--- directory/studio/branches/apacheds-plugin-branch/apacheds/META-INF/MANIFEST.MF (original)
+++ directory/studio/branches/apacheds-plugin-branch/apacheds/META-INF/MANIFEST.MF Wed May 28 03:58:16 2008
@@ -12,12 +12,10 @@
  org.eclipse.jdt.launching,
  org.eclipse.debug.core,
  org.eclipse.debug.ui,
+ org.apache.directory.studio.jars,
  org.apache.directory.studio.apacheds.configuration
 Eclipse-LazyStart: true
+Eclipse-RegisterBuddy: org.apache.directory.studio.jars
 Bundle-ClassPath: .,
- lib/dom4j-1.6.1.jar,
- lib/log4j-1.2.14.jar,
  lib/mina-core-1.1.2.jar,
- lib/slf4j-api-1.4.3.jar,
- lib/slf4j-log4j12-1.4.3.jar,
- lib/xml-apis-1.0.b2.jar
+ lib/slf4j-api-1.4.3.jar

Modified: directory/studio/branches/apacheds-plugin-branch/apacheds/plugin.xml
URL: http://svn.apache.org/viewvc/directory/studio/branches/apacheds-plugin-branch/apacheds/plugin.xml?rev=660902&r1=660901&r2=660902&view=diff
==============================================================================
--- directory/studio/branches/apacheds-plugin-branch/apacheds/plugin.xml (original)
+++ directory/studio/branches/apacheds-plugin-branch/apacheds/plugin.xml Wed May 28 03:58:16 2008
@@ -2,14 +2,6 @@
 <?eclipse version="3.2"?>
 <plugin>
    <extension
-         point="org.eclipse.ui.perspectives">
-      <perspective
-            class="org.apache.directory.studio.apacheds.perspectives.Perspective"
-            id="org.apache.directory.studio.apacheds.perspective"
-            name="ApacheDS">
-      </perspective>
-   </extension>
-   <extension
          point="org.eclipse.ui.preferencePages">
       <page
             class="org.apache.directory.studio.apacheds.prefs.MainPage"

Modified: directory/studio/branches/apacheds-plugin-branch/apacheds/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/branches/apacheds-plugin-branch/apacheds/pom.xml?rev=660902&r1=660901&r2=660902&view=diff
==============================================================================
--- directory/studio/branches/apacheds-plugin-branch/apacheds/pom.xml (original)
+++ directory/studio/branches/apacheds-plugin-branch/apacheds/pom.xml Wed May 28 03:58:16 2008
@@ -576,22 +576,7 @@
   </dependencyManagement>
 
   <dependencies>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-api</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>log4j</groupId>
-      <artifactId>log4j</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.mina</groupId>
-      <artifactId>mina-core</artifactId>
-    </dependency>
+    <!-- Eclipse dependencies -->
     <dependency>
       <groupId>org.eclipse.swt.gtk.linux</groupId>
       <artifactId>x86</artifactId>
@@ -659,10 +644,6 @@
       <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>dom4j</groupId>
-      <artifactId>dom4j</artifactId>
-    </dependency>
-    <dependency>
       <groupId>org.eclipse.debug</groupId>
       <artifactId>core</artifactId>
       <scope>provided</scope>
@@ -677,10 +658,21 @@
       <artifactId>launching</artifactId>
       <scope>provided</scope>
     </dependency>
+    <!-- Apache Directory Studio dependencies -->
     <dependency>
       <groupId>org.apache.directory.studio</groupId>
       <artifactId>apacheds.configuration</artifactId>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.directory.studio</groupId>
+      <artifactId>jars</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <!-- Jar dependencies -->
+    <dependency>
+      <groupId>org.apache.mina</groupId>
+      <artifactId>mina-core</artifactId>
+    </dependency>
   </dependencies>
 </project>