borinquenkid commented on code in PR #15568:
URL: https://github.com/apache/grails-core/pull/15568#discussion_r3440343561
##########
grails-data-hibernate5/core/src/test/groovy/grails/gorm/tests/validation/UniqueFalseConstraintSpec.groovy:
##########
@@ -31,7 +31,7 @@ class UniqueFalseConstraintSpec extends Specification {
@Shared @AutoCleanup HibernateDatastore hibernateDatastore = new
HibernateDatastore(User)
- @Issue('https://github.com/apache/grails-data-mapping/issues/1059')
+ @Issue('https://github.com/grails/grails-data-mapping/issues/1059')
Review Comment:
Reverted — this file is unchanged from `8.0.x` in the current revision.
##########
build-logic/plugins/src/main/groovy/org/apache/grails/buildsrc/CompilePlugin.groovy:
##########
@@ -58,8 +59,13 @@ class CompilePlugin implements Plugin<Project> {
}
private static void configureJavaVersion(Project project) {
+ Integer javaVersion = lookupPropertyByType(project, 'javaVersion',
Integer)
project.tasks.withType(JavaCompile).configureEach {
- it.options.release.set(lookupPropertyByType(project,
'javaVersion', Integer))
+ it.options.release.set(javaVersion)
+ }
+ project.tasks.withType(AbstractCompile).configureEach {
Review Comment:
Reverted — this file is unchanged from `8.0.x` in the current revision.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]