You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jmeter.apache.org by sebb <se...@gmail.com> on 2015/12/14 16:58:13 UTC

Re: svn commit: r1719635 - /jmeter/trunk/build.xml

On 12 December 2015 at 08:12,  <pm...@apache.org> wrote:
> Author: pmouawad
> Date: Sat Dec 12 08:12:12 2015
> New Revision: 1719635
>
> URL: http://svn.apache.org/viewvc?rev=1719635&view=rev
> Log:
> Create target with checkstyle to avoid commiting files that do not respect formating rules

-0.9

The target is unnecessary, as one can just do

ant checkstyle package

> Modified:
>     jmeter/trunk/build.xml
>
> Modified: jmeter/trunk/build.xml
> URL: http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1719635&r1=1719634&r2=1719635&view=diff
> ==============================================================================
> --- jmeter/trunk/build.xml (original)
> +++ jmeter/trunk/build.xml Sat Dec 12 08:12:12 2015
> @@ -871,6 +871,9 @@
>    <target name="package" depends="compile, prepare-resources, package-only"
>       description="Compile everything and create the jars"/>
>
> +  <target name="package-and-check" depends="package, checkstyle"
> +     description="Compile, create jars and apply checkstyle before commiting code"/>
> +
>    <target name="prepare-resources"
>       description="Prepare some resources files, update date">
>      <mkdir dir="${build.res}" />
>
>