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/01/10 17:53:23 UTC

svn commit: r1229635 - in /directory/studio/trunk: application/pom.xml helps/pom.xml pom.xml

Author: pamarcelot
Date: Tue Jan 10 16:53:22 2012
New Revision: 1229635

URL: http://svn.apache.org/viewvc?rev=1229635&view=rev
Log:
Configured RAT exclusions correctly

Modified:
    directory/studio/trunk/application/pom.xml
    directory/studio/trunk/helps/pom.xml
    directory/studio/trunk/pom.xml

Modified: directory/studio/trunk/application/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/application/pom.xml?rev=1229635&r1=1229634&r2=1229635&view=diff
==============================================================================
--- directory/studio/trunk/application/pom.xml (original)
+++ directory/studio/trunk/application/pom.xml Tue Jan 10 16:53:22 2012
@@ -257,6 +257,7 @@
               <!-- OTHER_EXCLUDES -->
               <exclude>docs/**/*</exclude>
               <exclude>application-updatesite/src/main/resources/*</exclude>
+              <exclude>**/*.bmp</exclude>
             </excludes>
           </configuration>
          </plugin>

Modified: directory/studio/trunk/helps/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/helps/pom.xml?rev=1229635&r1=1229634&r2=1229635&view=diff
==============================================================================
--- directory/studio/trunk/helps/pom.xml (original)
+++ directory/studio/trunk/helps/pom.xml Tue Jan 10 16:53:22 2012
@@ -420,4 +420,49 @@
 	  </build>
     </profile>
   </profiles>
+  
+  <build>
+	<pluginManagement>
+	  <plugins>
+		<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>
+			  <!-- NSIS_EXCLUDES -->
+			  <exclude>**/src/main/resources/AdvUninstLog.nsh</exclude>
+			  <!-- OTHER_EXCLUDES -->
+			  <exclude>ldapbrowser.help/src/main/resources/sevenseas.ldif</exclude>
+			  <exclude>**/src/main/resources/html/rfc/*.txt</exclude>
+			  <exclude>**/src/main/resources/html/rfcs/*.txt</exclude>
+			</excludes>
+		  </configuration>
+		 </plugin>
+	  </plugins>
+	</pluginManagement>
+  </build>
 </project>

Modified: directory/studio/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/pom.xml?rev=1229635&r1=1229634&r2=1229635&view=diff
==============================================================================
--- directory/studio/trunk/pom.xml (original)
+++ directory/studio/trunk/pom.xml Tue Jan 10 16:53:22 2012
@@ -1929,6 +1929,7 @@
               <exclude>repository/**/*</exclude>
               <exclude>tests/**/*</exclude>
               <exclude>tools/**/*</exclude>
+              <exclude>**/*.bmp</exclude>
             </excludes>
           </configuration>
          </plugin>