0

我想使用 maven-javascript-plugin 设置一个 maven javascript 项目。到目前为止,这工作正常,但现在我在压缩版本中添加了 DOJO 工具包。当我开始构建过程时,DOJO 工具包没有通过 jslint 测试并且构建过程停止。

有人可以告诉我如何在构建中跳过 jslint 目标吗?

谢谢!

4

2 回答 2

2

您应该能够配置 jslint-plugin 并使用 "jslint:jslint" 的 "excludes" 参数

您可能需要完全指定 jslint 插件配置;我还没有证实这一点。

于 2012-08-16T19:07:20.910 回答
0

也许不太适合问题本身,但如果想完全禁用jslint,可以选择将其绑定到不存在的阶段:

<build>
    <pluginManagement>
        <!-- Disable jslint for all phases -->
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jslint-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <id>default-jslint</id>
                        <phase>process-sources-unbind</phase>
                    </execution>
                    <execution>
                        <id>default-test-jslint</id>
                        <phase>process-test-sources-unbind</phase>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </pluginManagement>
</build>
于 2014-05-19T13:06:15.310 回答