I want to convert below Maven dependency to Gradle:
<dependency>
<groupId>x.y.z</groupId>
<artifactId>foundationcore</artifactId>
<version>RELEASE</version>
</dependency>
What would be the corresponding version in Gradle?
compile group: 'x.y.z', name: 'foundationcore', version:?