HHH-14657 Use the compile instead of runtime classpath

The runtime classpath contains the dependencies as jars that are not yet built when the plugin needs them. So use the compile classpath plus the compiled classes of the current project.
This commit is contained in:
Markus Heiden 2021-06-08 01:01:06 +02:00 committed by Sanne Grinovero
parent 423b13b50a
commit 26038d1b00
1 changed files with 5 additions and 0 deletions

View File

@ -37,6 +37,11 @@ import org.hibernate.cfg.Environment;
*/
public class EnhancementHelper {
static void enhance(SourceSet sourceSet, EnhanceExtension options, Project project) {
// The compile classpath contains the jar dependencies and
// the output directories with the compiled classes of project dependencies in a multi-project build.
// The classes directories contain the compiled classes of this project.
// The runtime classpath cannot be used for this purpose
// because it contains the jars of project dependencies which are not yet built.
final ClassLoader classLoader = toClassLoader( sourceSet.getCompileClasspath(), sourceSet.getOutput().getClassesDirs() );
final EnhancementContext enhancementContext = new DefaultEnhancementContext() {