File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 2020
2121group = ' ch.xxx'
2222version = ' 0.0.1-SNAPSHOT'
23- sourceCompatibility = ' 21'
23+
24+ java {
25+ toolchain {
26+ languageVersion = JavaLanguageVersion . of(21 )
27+ }
28+ }
2429
2530repositories {
2631 mavenCentral()
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ task cleanAngular {
2626
2727task buildAngular {
2828 if (project. hasProperty(' withAngular' )) {
29- exec {
29+ providers . exec {
3030 logger. info(' Task buildAngular - npm install' )
3131 workingDir ' src/angular'
3232 if (System . getProperty(" os.name" ). toUpperCase(). contains(" WINDOWS" )){
@@ -35,7 +35,7 @@ task buildAngular {
3535 commandLine(' npm' , ' install' )
3636 }
3737 }
38- exec {
38+ providers . exec {
3939 logger. info(' Task buildAngular - npm run build' )
4040 workingDir ' src/angular'
4141 if (System . getProperty(" os.name" ). toUpperCase(). contains(" WINDOWS" )){
@@ -49,7 +49,7 @@ task buildAngular {
4949
5050task testAngular {
5151 if (project. hasProperty(' withAngular' )) {
52- exec {
52+ providers . exec {
5353 workingDir ' src/angular'
5454 if (System . getProperty(" os.name" ). toUpperCase(). contains(" WINDOWS" )){
5555 logger. info(' Task buildAngular - npm run test' )
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments