We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 209e02e commit e100909Copy full SHA for e100909
build.gradle
@@ -16,6 +16,8 @@ buildscript {
16
17
plugins {
18
id 'net.researchgate.release' version "$releasePluginVersion"
19
+ id 'java'
20
+ id 'org.springframework.boot' version "$springBootVersion"
21
}
22
23
apply plugin: 'java'
@@ -27,7 +29,10 @@ apply plugin: 'java-library'
27
29
apply plugin: 'org.owasp.dependencycheck'
28
30
31
group = 'com.github.sinwe.gradle.caching'
-sourceCompatibility = 17
32
+java {
33
+ sourceCompatibility = "17"
34
+ targetCompatibility = "17"
35
+}
36
37
repositories {
38
mavenCentral()
0 commit comments