Why hibernate is only available at test

I would like to understand why hibernate is included as maven test scope in flowable 6.4.1 in root pom?

<dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate-core</artifactId>
			<scope>test</scope>
  </dependency>

Since hibernate core is available only in test score, my modeler application is failing to boot as I included few custom API which are written using hibernate JPA implementation.

Would like to know what are all the implications if I make scope to compile only in modeler application, leaving rest unchanged?

This is fixed now. Thanks @filiphr

Now the forum post is much clearer :slight_smile:. The issue you opened flowable/flowable-engine#1776 lead me to remove the test scope from the root pom.