0
我必須在下面的pom.xml中包含版本信息嗎? 我只想添加envers - 已經包含沒有版本的hibernate-core。Hibernate envers:maven依賴版本信息
<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>
當我排除版本信息時,我的.m2目錄中沒有有效的jar文件。
剛剛在裏面創建了未知文件夾和未知文件。
我已經有5.2.9.Final hibernate-core,但我只是想知道我必須在我的hibernate-envers依賴項中寫下版本號。
見相關的問題和答案在這裏:https://stackoverflow.com/a/29476680/3656963 – Revive
感謝它幫助@Revive – macaron