| I was not able to import the the project into Eclipse using its Gradle import feature. What i have done was ajust “eclipse“ gradle task on “hibernate-core/hibernate-core.gradle” and “hibernate-testing/hibernate-testing.gradle“ to generate correct eclipse “.project”, “.classpath“ and others eclipse metadatas:
- “hibernate-core/.externalToolBuilders/gradlew_process_test_resources.launch”: Extra “project builder” with command “gradlew hibernate-core:processTestResources --no-daemon“ for resource substitutions;
- “hibernate-core/hibernate-core-RunnableIdeTest.launch”: “Run Configuration” for eclipse junit runtime with “RunnableIdeTest“ tag filtering.
I also needed to add the “RunnableIdeTest” tag on all “org.hibernate.orm.*” test classes:
- @Tags({
@Tag("RunnableIdeTest"), })
|