File tree 4 files changed +9
-10
lines changed
delphi-frontend/src/main/java/au/com/integradev/delphi/msbuild/condition
4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 20
20
- uses : actions/checkout@v4
21
21
- uses : axel-op/googlejavaformat-action@c1134ebd196c4cbffb077f9476585b0be8b6afcd # v4.0.0
22
22
with :
23
- release-name : v1.19.2
23
+ release-name : v1.26.0
24
24
args : " --set-exit-if-changed --dry-run"
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ read the [contributing guide](docs/CONTRIBUTING.md).
104
104
105
105
## Development
106
106
107
- SonarDelphi can be built with JDK 11 + using [ Maven] ( https://maven.apache.org/ ) .
107
+ SonarDelphi can be built with JDK 17 + using [ Maven] ( https://maven.apache.org/ ) .
108
108
109
109
To build the project and run unit tests, execute the following command from the project's root directory:
110
110
Original file line number Diff line number Diff line change @@ -45,12 +45,11 @@ public Optional<Boolean> boolEvaluate(ExpressionEvaluator evaluator) {
45
45
return isEqual (evaluator );
46
46
case NOT_EQUAL :
47
47
return isEqual (evaluator ).map (value -> !value );
48
- // NOTE:
49
- // When comparing numerics against versions, if the number is the same as the "major"
50
- // version,
51
- // then that means we are comparing something like "6.X.Y.Z" to "6".
52
- // Version treats the objects with more dots as "larger" regardless of what those dots are
53
- // (e.g. 6.0.0.0 > 6 is a true statement)
48
+ // NOTE:
49
+ // When comparing numerics against versions, if the number is the same as the "major" version,
50
+ // then that means we are comparing something like "6.X.Y.Z" to "6".
51
+ // Version treats the objects with more dots as "larger" regardless of what those dots are
52
+ // (e.g. 6.0.0.0 > 6 is a true statement)
54
53
case GREATER_THAN :
55
54
return compare (
56
55
evaluator ,
Original file line number Diff line number Diff line change 103
103
<properties >
104
104
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
105
105
<maven .min.version>3.3.9</maven .min.version>
106
- <jdk .min.version>11 </jdk .min.version>
106
+ <jdk .min.version>17 </jdk .min.version>
107
107
<skipITs >true</skipITs >
108
108
<!-- SonarCloud scan -->
109
109
<sonar .organization>integrated-application-development</sonar .organization>
463
463
<configuration >
464
464
<java >
465
465
<googleJavaFormat >
466
- <version >1.19.2 </version >
466
+ <version >1.26.0 </version >
467
467
<style >GOOGLE</style >
468
468
<reflowLongStrings >true</reflowLongStrings >
469
469
</googleJavaFormat >
You can’t perform that action at this time.
0 commit comments