In Maven there is a concept where one can put a section in the pom.xml and then refer to an artifact of type pom. What this will do is go fetch that pom and set the versions for all related jars to a particular product. For example:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-6.0</artifactId>
<version>3.0.0.Final</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
Now if I use any artifact from that release of JBoss, I need not specify version but rather the POM imported will do the job for me.
How can I accomplish the same thing in gradle?