Skip to content

Commit

Permalink
fix gradle deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
sebersole committed Dec 1, 2021
1 parent a6764fb commit 55bfc59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/java-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ processTestResources {
include '**/*.properties'
include '**/*.xml'
}
into sourceSets.test.java.outputDir
into sourceSets.test.java.classesDirectory
}
copy {
from file( 'src/test/resources' )
Expand Down
2 changes: 1 addition & 1 deletion hibernate-core/hibernate-core.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ task generateEnversStaticMetamodel(
]

// put static metamodel classes back out to the source tree since they're version controlled.
destinationDir = new File( "${projectDir}/src/main/java" )
destinationDirectory = new File( "${projectDir}/src/main/java" )
}

tasks.withType( Test.class ).each { test ->
Expand Down

0 comments on commit 55bfc59

Please sign in to comment.