Do I have to include version information in the pom.xml like below? I just want to add envers - already included hibernate-core without version.
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-envers</artifactId>
<version>5.2.9.Final</version> <!--this one-->
</dependency>
When I exclude version info, there is no valid jar file in my .m2 directory.
Just created unknown folder and unknown file inside it.
I already have 5.2.9.Final hibernate-core, but I just wonder I have to write down version number in my hibernate-envers dependency.