tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/deploy/AbstractDeployWarMojo.java [64:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void validateWarFile()
        throws MojoExecutionException
    {
        if ( !warFile.exists() || !warFile.isFile() )
        {
            throw new MojoExecutionException(
                messagesProvider.getMessage( "DeployMojo.missingWar", warFile.getPath() ) );
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tomcat8-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat8/deploy/AbstractDeployWarMojo.java [64:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void validateWarFile()
        throws MojoExecutionException
    {
        if ( !warFile.exists() || !warFile.isFile() )
        {
            throw new MojoExecutionException(
                messagesProvider.getMessage( "DeployMojo.missingWar", warFile.getPath() ) );
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



