jslintmavenプラグインを使用しようとしています。これをpomファイルに含めました
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jslint-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>execute-jslint</id>
<goals>
<goal>jslint</goal>
<goal>test-jslint</goal>
</goals>
<configuration>
<sourceJsFolder>
<file>${basedir}/src/main/webapp/static/js/</file>
</sourceJsFolder>
</configuration>
</execution>
</executions>
</plugin>
しかし、このコマンドを実行するmaven jslint:jslint
と、このエラーが発生します
[ERROR] Failed to execute goal org.codehaus.mojo:jslint-maven-plugin:1.0.1:jslint (default-cli) on project webshop-core: Execution default-cli of goal org.codehaus.mojo:jslint-maven-plugin:1.0.1:jslint failed: basedir /home/mymac/project1/src/main/js does not exist -> [Help 1]
パラメータについては、このリンクhttp://mojo.codehaus.org/jslint-maven-plugin/jslint-mojo.html#sourceJsFolderによると、これは引き続きデフォルト値から読み取られます。