File tree 3 files changed +10
-5
lines changed
3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 20
20
21
21
group = ' ch.xxx'
22
22
version = ' 0.0.1-SNAPSHOT'
23
- sourceCompatibility = ' 21'
23
+
24
+ java {
25
+ toolchain {
26
+ languageVersion = JavaLanguageVersion . of(21 )
27
+ }
28
+ }
24
29
25
30
repositories {
26
31
mavenCentral()
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ task cleanAngular {
26
26
27
27
task buildAngular {
28
28
if (project. hasProperty(' withAngular' )) {
29
- exec {
29
+ providers . exec {
30
30
logger. info(' Task buildAngular - npm install' )
31
31
workingDir ' src/angular'
32
32
if (System . getProperty(" os.name" ). toUpperCase(). contains(" WINDOWS" )){
@@ -35,7 +35,7 @@ task buildAngular {
35
35
commandLine(' npm' , ' install' )
36
36
}
37
37
}
38
- exec {
38
+ providers . exec {
39
39
logger. info(' Task buildAngular - npm run build' )
40
40
workingDir ' src/angular'
41
41
if (System . getProperty(" os.name" ). toUpperCase(). contains(" WINDOWS" )){
@@ -49,7 +49,7 @@ task buildAngular {
49
49
50
50
task testAngular {
51
51
if (project. hasProperty(' withAngular' )) {
52
- exec {
52
+ providers . exec {
53
53
workingDir ' src/angular'
54
54
if (System . getProperty(" os.name" ). toUpperCase(). contains(" WINDOWS" )){
55
55
logger. info(' Task buildAngular - npm run test' )
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.4 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments