File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ version = providers.gradleProperty("VERSION_NAME").get()
1515group = providers.gradleProperty(" GROUP" ).get()
1616description = providers.gradleProperty(" POM_DESCRIPTION" ).get()
1717
18+ java {
19+ sourceCompatibility = JavaVersion .VERSION_1_8
20+ targetCompatibility = JavaVersion .VERSION_1_8
21+ }
22+
1823gradlePlugin {
1924 website = providers.gradleProperty(" POM_URL" )
2025 vcsUrl = providers.gradleProperty(" POM_URL" )
@@ -88,14 +93,6 @@ dependencies {
8893 testImplementation(" org.junit.platform:junit-platform-suite-engine" )
8994}
9095
91- tasks.withType<GroovyCompile >().configureEach {
92- options.release = 8
93- }
94-
95- tasks.withType<JavaCompile >().configureEach {
96- options.release = 8
97- }
98-
9996tasks.withType<Test >().configureEach {
10097 useJUnitPlatform()
10198
You can’t perform that action at this time.
0 commit comments