You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by fe...@apache.org on 2007/11/08 15:15:56 UTC

svn commit: r593161 - in /directory/sandbox/felixk/studio-aciitemeditor: .project META-INF/ pom.xml src/main/resources/META-INF/

Author: felixk
Date: Thu Nov  8 06:15:55 2007
New Revision: 593161

URL: http://svn.apache.org/viewvc?rev=593161&view=rev
Log:
Intermediate commit to fix mvn eclipse:eclipse to create .project and .classpath files

Added:
    directory/sandbox/felixk/studio-aciitemeditor/src/main/resources/META-INF/
      - copied from r593132, directory/sandbox/felixk/studio-aciitemeditor/META-INF/
Removed:
    directory/sandbox/felixk/studio-aciitemeditor/.project
    directory/sandbox/felixk/studio-aciitemeditor/META-INF/
Modified:
    directory/sandbox/felixk/studio-aciitemeditor/pom.xml

Modified: directory/sandbox/felixk/studio-aciitemeditor/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/felixk/studio-aciitemeditor/pom.xml?rev=593161&r1=593160&r2=593161&view=diff
==============================================================================
--- directory/sandbox/felixk/studio-aciitemeditor/pom.xml (original)
+++ directory/sandbox/felixk/studio-aciitemeditor/pom.xml Thu Nov  8 06:15:55 2007
@@ -55,10 +55,27 @@
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-eclipse-plugin</artifactId>
+                <configuration>
+                    <pde>true</pde>
+                    <manifest>${basedir}/src/main/resources/META-INF/MANIFEST.MF</manifest>
+                    <additionalProjectnatures>
+                        <projectnature>org.eclipse.jem.workbench.JavaEMFNature</projectnature>
+                        <projectnature>org.eclipse.pde.PluginNature</projectnature>
+                        <projectnature>org.eclipse.jdt.core.javanature</projectnature>
+                        <projectnature>org.eclipse.jem.beaninfo.BeanInfoNature</projectnature>
+                    </additionalProjectnatures>
+                    <classpathContainers>
+                        <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
+                        <classpathContainer>org.eclipse.pde.core.requiredPlugins</classpathContainer>
+                    </classpathContainers>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
                 <configuration>
                     <archive>
-                        <manifestFile>META-INF/MANIFEST.MF</manifestFile>
                         <addMavenDescriptor>false</addMavenDescriptor>
                     </archive>
                 </configuration>
@@ -70,18 +87,22 @@
         <dependency>
             <groupId>org.apache.directory.shared</groupId>
             <artifactId>shared-ldap</artifactId>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.eclipse</groupId>
             <artifactId>org.eclipse.jface</artifactId>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.directory.studio</groupId>
             <artifactId>${pom.groupId}.ldapbrowser.common</artifactId>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.directory.studio</groupId>
             <artifactId>${pom.groupId}.valueeditors</artifactId>
+            <scope>provided</scope>
         </dependency>
     </dependencies>
 </project>