This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new f8c451634e remove "obsolete options" warning
f8c451634e is described below
commit f8c451634e700d988c58f95ff23e6914a8051135
Author: Paul King <[email protected]>
AuthorDate: Thu Apr 14 10:01:46 2022 +1000
remove "obsolete options" warning
---
build.gradle | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.gradle b/build.gradle
index 99264cd5ac..e7de4b7de1 100644
--- a/build.gradle
+++ b/build.gradle
@@ -213,8 +213,8 @@ def compileTestExtensionModule =
tasks.register("compileTestExtensionModule", Ja
classpath = files(tasks.named('jar'))
source fileTree(extModuleFixtureDir.dir("src/main/java"))
destinationDirectory = extModuleOutputDir.map { it.dir("classes") }
- sourceCompatibility = 1.7
- targetCompatibility = 1.7
+ sourceCompatibility = 1.8
+ targetCompatibility = 1.8
}
def testExtensionModuleJar = tasks.register("testExtensionModuleJar", Jar) {