I am executing apigeelint plugin while maven deployment.
Added below code snippet in pom.xml:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3.2</version>
<executions>
<execution>
<id>apigeelint</id>
<phase>validate</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>node</executable>
<commandlineArgs>
./node_modules/apigeelint/cli.js -s ./apiproxy -f table.js
</commandlineArgs>
</configuration>
</execution>
</executions>
</plugin>
<br />
Is there any way to exclude/ignore any particular javascript file (test.js) which is under apiproxy directory during maven deployment?
Thanks in Advance