2013/3/1 <lukaszlen...@apache.org>: > Author: lukaszlenart > Date: Fri Mar 1 18:13:17 2013 > New Revision: 1451672 > > URL: http://svn.apache.org/r1451672 > Log: > Excludes files from rat report > > Modified: > commons/proper/ognl/trunk/pom.xml > > Modified: commons/proper/ognl/trunk/pom.xml > URL: > http://svn.apache.org/viewvc/commons/proper/ognl/trunk/pom.xml?rev=1451672&r1=1451671&r2=1451672&view=diff > ============================================================================== > --- commons/proper/ognl/trunk/pom.xml (original) > +++ commons/proper/ognl/trunk/pom.xml Fri Mar 1 18:13:17 2013 > @@ -178,7 +178,7 @@ limitations under the License. > <maven.compile.source>1.5</maven.compile.source> > <maven.compile.target>1.5</maven.compile.target> > > - > <commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory> > + > <commons.scmPubCheckoutDirectory>${project.build.directory}/site-content</commons.scmPubCheckoutDirectory> so if you use mvn clean. You will checkout again the content from svn. The goal with using site-content directory is to do only update rather than a full checkout even when using clean. > </properties> > > <dependencies> > @@ -408,6 +408,16 @@ limitations under the License. > <sonarHostURL>https://analysis.apache.org/</sonarHostURL> > </configuration> > </plugin> > + <plugin> > + <groupId>org.apache.rat</groupId> > + <artifactId>apache-rat-plugin</artifactId> > + <configuration> > + <useDefaultExcludes>true</useDefaultExcludes> > + <includes> > + <include>src/**/*</include> > + </includes> <excludes> <exclude>site-content</exclude> </excludes> > + </configuration> > + </plugin> > </plugins> > </reporting> > </profile> > @@ -496,7 +506,7 @@ limitations under the License. > <id>setup-checkout</id> > <activation> > <file> > - <missing>site-content</missing> > + <missing>${project.build.directory}/site-content</missing> Doesn't work for maven 3.0.x versions. See https://jira.codehaus.org/browse/MNG-5418 > </file> > </activation> > <build> > >
-- Olivier Lamy Talend: http://coders.talend.com http://twitter.com/olamy | http://linkedin.com/in/olamy --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org