Fix extended test SourceSets for hibernate-processor
This commit is contained in:
parent
9ac37a19c0
commit
88ec2fe38b
|
@ -24,7 +24,7 @@ sourceSets {
|
||||||
srcDirs = ['src/quarkusOrmPanache/java']
|
srcDirs = ['src/quarkusOrmPanache/java']
|
||||||
}
|
}
|
||||||
resources {
|
resources {
|
||||||
srcDirs tasks.processTestResources
|
srcDirs sourceSets.main.resources
|
||||||
}
|
}
|
||||||
compileClasspath += sourceSets.main.output + sourceSets.test.output
|
compileClasspath += sourceSets.main.output + sourceSets.test.output
|
||||||
runtimeClasspath += sourceSets.main.output + sourceSets.test.output
|
runtimeClasspath += sourceSets.main.output + sourceSets.test.output
|
||||||
|
@ -34,7 +34,7 @@ sourceSets {
|
||||||
srcDirs = ['src/quarkusHrPanache/java']
|
srcDirs = ['src/quarkusHrPanache/java']
|
||||||
}
|
}
|
||||||
resources {
|
resources {
|
||||||
srcDirs tasks.processTestResources
|
srcDirs sourceSets.main.resources
|
||||||
}
|
}
|
||||||
compileClasspath += sourceSets.main.output + sourceSets.test.output
|
compileClasspath += sourceSets.main.output + sourceSets.test.output
|
||||||
runtimeClasspath += sourceSets.main.output + sourceSets.test.output
|
runtimeClasspath += sourceSets.main.output + sourceSets.test.output
|
||||||
|
@ -44,7 +44,7 @@ sourceSets {
|
||||||
srcDirs = ['src/jakartaData/java']
|
srcDirs = ['src/jakartaData/java']
|
||||||
}
|
}
|
||||||
resources {
|
resources {
|
||||||
srcDirs tasks.processTestResources
|
srcDirs sourceSets.main.resources
|
||||||
}
|
}
|
||||||
compileClasspath += sourceSets.main.output + sourceSets.test.output
|
compileClasspath += sourceSets.main.output + sourceSets.test.output
|
||||||
runtimeClasspath += sourceSets.main.output + sourceSets.test.output
|
runtimeClasspath += sourceSets.main.output + sourceSets.test.output
|
||||||
|
|
Loading…
Reference in New Issue