This is the pom file.
<project>
<parent>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-api-bom</artifactId>
<version>1.0</version>
<relativePath>../bom/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>my-module</artifactId>
<dependencies>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>
I know, to download the dependencies(above its "el-api") we should use
mvn dependency
But what is the command used to download the parent dependency(i.e weld-api-bom)?