“空”与“空”相对Maven 中的参数
为什么 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来这个问题自 2007 年以来就已为人所知 -> http://mail-archives.apache.org/mod_mbox/maven-users/200708.mbox/%[电子邮件受保护]%3E
在您的情况下,您可以尝试改用
配置参数。如果你有很多争论,那就不太好,但如果你只有一两个,这可能是一个选择。
我还在 MEXEC Jira 中创建了错误报告: http://jira.codehaus.org/browse /MEXEC-104
UPDATE
要通过
提供类路径,请执行以下操作:实际上,解析器甚至允许折叠长行使其更具可读性,例如
Looks like the problem has been known since 2007 -> http://mail-archives.apache.org/mod_mbox/maven-users/200708.mbox/%[email protected]%3E
In your case you may try to use
<commanlineArgs>
configuration parameter instead.It's not pretty if you have many arguments, but if you only have one or two it may be an option.
I've also created a bug report in MEXEC Jira: http://jira.codehaus.org/browse/MEXEC-104
UPDATE
To supply a classpath through
<commandlineArgs>
, do this:Actually, the parser even allows folding of the long line to make it more readable, e.g.
您可以将
my_val
设置为一些虚拟系统属性值,例如-Ddummy=dummy
。我知道这并不优雅,但至少是一种解决方法。
You can set
my_val
to some dummy system property value like-Ddummy=dummy
.I know it is not elegant but at least a workaround.