Maven中的<version>#{site.components ['arquillian-core']。latest_version} </version>是什么意思?

时间:2016-11-06 20:40:57

标签: maven jboss-arquillian

我正在学习https://facebook.github.io/react-native/docs/refreshcontrol.htmlArquillian中有以下代码snipet:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.jboss.arquillian</groupId>
            <artifactId>arquillian-bom</artifactId>
            <version>#{site.components['arquillian-core'].latest_version}</version>
            <scope>import</scope>
            <type>pom</type>
        </dependency>
    </dependencies>
</dependencyManagement>

但是我不知道如何解释这种依赖关系,特别是<version>行,是否有人可以解释这个问题?我的问题是:EL表达式是什么?什么是bom包裹? (我读到它代表Build Of Materials,但我不知道它是什么。)

提前感谢您的回答。

1 个答案:

答案 0 :(得分:1)

其他被困的人应该查看the solution provided by the dev in response to the OP here.

TL; DR:这是教程中的一个错误,版本应该是:

<version>1.1.11.Final</version>