为什么Maven坚持要处理空字符串和空格字符串“空值”?采取以下pom - 我得到关于错误配置的参数的常见虚假消息。我如何安排传递一个Maven实际上会识别的空值,而不是用荒谬的错误信息折磨我?
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Misconfigured argument, value is null. Set the argument to an empty value if this is the required behaviour.
的pom.xml:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.test</groupId>
<artifactId>test</artifactId>
<packaging>pom</packaging>
<version>0</version>
<name>test</name>
<url>http://maven.apache.org</url>
<properties>
<my.val> </my.val>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>Exec test</id>
<phase>prepare-package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${env.JAVA_HOME}/bin/java</executable>
<arguments>
<argument>${my.val}</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
答案 0 :(得分:7)
看起来这个问题自2007年以来就已为人所知 - &gt; http://mail-archives.apache.org/mod_mbox/maven-users/200708.mbox/%3C5a2cf1f60708090246l216f156esf46cc1e968b37ccd@mail.gmail.com%3E
在您的情况下,您可以尝试使用<commanlineArgs>
配置参数。
如果你有很多论点,那就不好了,但如果你只有一两个论点,那么它可能是一个选择。
<configuration>
<executable>${env.JAVA_HOME}/bin/java</executable>
<commandlineArgs>${my.val}</commandlineArgs>
</configuration>
我还在MEXEC Jira中创建了一个错误报告:http://jira.codehaus.org/browse/MEXEC-104
<强>更新强>
要通过<commandlineArgs>
提供类路径,请执行以下操作:
<commandlineArgs>-classpath %classpath my.main.class.MyMainClass ${my.val}</commandlineArgs>
实际上,解析器甚至允许折叠长行以使其更具可读性,例如。
<commandlineArgs>
-classpath %classpath
my.main.class.MyMainClass
${my.val}
</commandlineArgs>
答案 1 :(得分:0)
您可以将my_val
设置为某些虚拟系统属性值,例如-Ddummy=dummy
。
我知道这不是优雅,但至少是一种解决方法。