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 2012/05/03 15:32:08 UTC

svn commit: r1333453 - in /directory/studio/trunk: plugins/pom.xml plugins/rcp.fullscreen/pom.xml pom.xml

Author: pamarcelot
Date: Thu May  3 13:32:07 2012
New Revision: 1333453

URL: http://svn.apache.org/viewvc?rev=1333453&view=rev
Log:
Excluded the *.java and plugin.xml files from the 'rcp.fullscreen' plugin in the RAT report. These files are under the Eclipse Public License v1.0.

Modified:
    directory/studio/trunk/plugins/pom.xml
    directory/studio/trunk/plugins/rcp.fullscreen/pom.xml
    directory/studio/trunk/pom.xml

Modified: directory/studio/trunk/plugins/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/pom.xml?rev=1333453&r1=1333452&r2=1333453&view=diff
==============================================================================
--- directory/studio/trunk/plugins/pom.xml (original)
+++ directory/studio/trunk/plugins/pom.xml Thu May  3 13:32:07 2012
@@ -96,6 +96,8 @@
               <exclude>ldapbrowser.core/src/main/resources/default_schema.ldif</exclude>
               <exclude>rcp/resources/icons/linux/studio.xpm</exclude>
               <exclude>schemaeditor/resources/schemas/openldap/*.xml</exclude>
+              <exclude>rcp.fullscreen/**/*.java</exclude>
+              <exclude>rcp.fullscreen/plugin.xml</exclude>
               <exclude>**/*.launch</exclude>
               <exclude>**/maven-eclipse.xml</exclude>
             </excludes>

Modified: directory/studio/trunk/plugins/rcp.fullscreen/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/rcp.fullscreen/pom.xml?rev=1333453&r1=1333452&r2=1333453&view=diff
==============================================================================
--- directory/studio/trunk/plugins/rcp.fullscreen/pom.xml (original)
+++ directory/studio/trunk/plugins/rcp.fullscreen/pom.xml Thu May  3 13:32:07 2012
@@ -143,6 +143,41 @@
           <skip>true</skip>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludeSubProjects>false</excludeSubProjects>
+          <excludes>
+            <!-- MAVEN_DEFAULT_EXCLUDES -->
+            <exclude>**/target/**/*</exclude>
+            <exclude>**/cobertura.ser</exclude>
+            <!-- ECLIPSE_DEFAULT_EXCLUDES -->
+            <exclude>**/.classpath</exclude>
+            <exclude>**/.project</exclude>
+            <exclude>**/.settings/**/*</exclude>
+            <!-- IDEA_DEFAULT_EXCLUDES -->
+            <exclude>**/*.iml</exclude>
+            <exclude>**/*.ipr</exclude>
+            <exclude>**/*.iws</exclude>
+            <!-- MANIFEST_MF_EXCLUDES -->
+            <exclude>**/MANIFEST.MF</exclude>
+            <!-- Missing license header in dependency reduced pom, see http://jira.codehaus.org/browse/MSHADE-48 -->
+            <exclude>**/dependency-reduced-pom.xml</exclude>
+            <!-- GITIGNORE_EXCLUDES -->
+            <exclude>**/.gitignore</exclude>
+            <!-- ABOUT_EXCLUDES -->
+            <exclude>**/about.ini</exclude>
+            <exclude>**/about_files/*</exclude>
+            <!-- LOG_FILES_EXCLUDES -->
+            <exclude>**/*.log</exclude>
+            <exclude>**/*.vm</exclude>
+            <!-- PLUGIN_EXCLUDES (different license) -->
+            <exclude>**/*.java</exclude>
+            <exclude>**/plugin.xml</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 

Modified: directory/studio/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/pom.xml?rev=1333453&r1=1333452&r2=1333453&view=diff
==============================================================================
--- directory/studio/trunk/pom.xml (original)
+++ directory/studio/trunk/pom.xml Thu May  3 13:32:07 2012
@@ -2258,6 +2258,8 @@
               <exclude>plugins/ldapbrowser.core/src/main/resources/default_schema.ldif</exclude>
               <exclude>plugins/rcp/resources/icons/linux/studio.xpm</exclude>
               <exclude>plugins/schemaeditor/resources/schemas/openldap/*.xml</exclude>
+              <exclude>plugins/rcp.fullscreen/**/*.java</exclude>
+              <exclude>plugins/rcp.fullscreen/plugin.xml</exclude>
               <exclude>repository/**/*</exclude>
               <exclude>tests/**/*</exclude>
               <exclude>tools/**/*</exclude>