Skip to content

Commit e100909

Browse files
committed
Fixing gradle
1 parent 209e02e commit e100909

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ buildscript {
1616

1717
plugins {
1818
id 'net.researchgate.release' version "$releasePluginVersion"
19+
id 'java'
20+
id 'org.springframework.boot' version "$springBootVersion"
1921
}
2022

2123
apply plugin: 'java'
@@ -27,7 +29,10 @@ apply plugin: 'java-library'
2729
apply plugin: 'org.owasp.dependencycheck'
2830

2931
group = 'com.github.sinwe.gradle.caching'
30-
sourceCompatibility = 17
32+
java {
33+
sourceCompatibility = "17"
34+
targetCompatibility = "17"
35+
}
3136

3237
repositories {
3338
mavenCentral()

0 commit comments

Comments
 (0)