1

不能在 Maven 配置文件中定义操作系统版本范围吗?

<profile>
    <id>mac lion</id>
    <activation>
        <os>
            <family>mac</family>
            <version>[10.7.0,)</version>
        </os>
    </activation>
</profile>
4

1 回答 1

2

无法定义操作系统范围。

但是您可以尝试通过使用maven enforcer plugin<RequireOS>的参数来实现它。如果这很棘手,您可以尝试编写自定义规则

于 2012-04-14T03:55:58.597 回答