Issue
I work with netbeans version 11.0 and i can't find hibernate plugin for it, how can i add hibernate to my project or to my ide?
Solution
You have 2 ways, the first one is that you create your project with Maven and add the Maven repository to pom.xml Like this:
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.4.12.Final</version>
</dependency>
Answered By - Bardales
Answer Checked By - Senaida (JavaFixing Volunteer)