Author: sebb Date: Mon Dec 20 19:41:40 2010 New Revision: 1051259 URL: http://svn.apache.org/viewvc?rev=1051259&view=rev Log: MATH-455 Allow Clirr minSeverity to be overridden on the command-line
Modified: commons/proper/math/trunk/pom.xml Modified: commons/proper/math/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/pom.xml?rev=1051259&r1=1051258&r2=1051259&view=diff ============================================================================== --- commons/proper/math/trunk/pom.xml (original) +++ commons/proper/math/trunk/pom.xml Mon Dec 20 19:41:40 2010 @@ -247,6 +247,8 @@ <maven.compile.target>1.5</maven.compile.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + <!-- Allow severity to be overriden by the command-line option -DminSeverity=level --> + <minSeverity>info</minSeverity> </properties> <build> @@ -350,7 +352,7 @@ <artifactId>clirr-maven-plugin</artifactId> <version>2.2.3</version> <configuration> - <minSeverity>info</minSeverity> + <minSeverity>${minSeverity}</minSeverity> </configuration> </plugin> </plugins>