"The command line is too long" -- 运行 maven 测试时



在64位Windows上运行$mvn test会给我以下错误,即使我执行$mvn test -Dgwt.genParam=false:

The command line is too long

确保您使用的是2.16版本,并且您有useManifestOnlyJar选项(在这里记录)。

例如:

<project>
    [...]
    <build>
      <pluginManagement>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.16</version>
            <configuration>
                <useManifestOnlyJar>true</useManifestOnlyJar>
            </configuration>
          </plugin>
        </plugins>
      </pluginManagement>
    </build>
    [...]
</project>

这将创建一个带有清单的jar,该清单重新创建您的类路径(而不是通过CLASSPATH变量设置它,这是一种受Windows命令行限制问题影响的方法)。

相关内容

  • 没有找到相关文章

最新更新