public void execute()

in src/it/exec-timeout-invoker-level/src/main/java/org/apache/maven/it/plugins/dummy/MyMojo.java [40:88]


    public void execute()
        throws MojoExecutionException
    {

        try
        {
            Thread.sleep(5000);
        }
        catch ( java.lang.Exception exception )
        {
            exception.printStackTrace();
            throw new MojoExecutionException(exception.getMessage(), exception);
        }

        File f = outputDirectory;

        if ( !f.exists() )
        {
            f.mkdirs();
        }

        File touch = new File( f, "touch.txt" );

        FileWriter w = null;
        try
        {
            w = new FileWriter( touch );

            w.write( "touch.txt" );
        }
        catch ( IOException e )
        {
            throw new MojoExecutionException( "Error creating file " + touch, e );
        }
        finally
        {
            if ( w != null )
            {
                try
                {
                    w.close();
                }
                catch ( IOException e )
                {
                    // ignore
                }
            }
        }
    }