File tree Expand file tree Collapse file tree 7 files changed +126
-38
lines changed Expand file tree Collapse file tree 7 files changed +126
-38
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ spaces_around_operators = true
1212tab_width = 2
1313indent_size = 2
1414
15- ij_continuation_indent_size = 4
15+ ij_continuation_indent_size = 2
1616ij_any_align_multiline_parameters = false
1717
1818[* .yaml ]
Original file line number Diff line number Diff line change 11group =org.apache.click
22
3- version =2.5.9
3+ version =2.6
44
55org.gradle.jvmargs = -Dfile.encoding=UTF-8 -XX:+UseParallelGC -Xms512m -Xmx1024m -Djava.net.preferIPv4Stack=true
66systemProp.file.encoding = UTF-8
Load Diff Large diffs are not rendered by default.
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.11.1 -all.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -all.zip
44networkTimeout =99000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 11jdk :
22 - openjdk17
33
4+ gradle :
5+ - version : 8.13
6+
47install :
5- - ./gradlew clean build publishToMavenLocal -x test -x sonarlintMain -x sonarlintTest - -console=plain --continue --warning-mode all
8+ - ./gradlew clean build publishToMavenLocal --console=plain --continue --warning-mode all
Original file line number Diff line number Diff line change 11#lombok.anyConstructor.addConstructorProperties=true → javac -parameters ➕ copyableAnnotations ➕ @RequiredArgsConstructor(onConstructor_=@JsonCreator)
22
3-
4- lombok.addNullAnnotations = javax
3+ # https://docs.spring.io/spring-framework/reference/7.0/core/null-safety.html ➕ http://jspecify.org/docs/user-guide/ ➕ https://github.com/uber/NullAway/issues/917
4+ lombok.addNullAnnotations = CUSTOM:TYPE_USE:org.jspecify.annotations.NonNull:org.jspecify.annotations.Nullable
55
66lombok.var.flagUsage = error
77
Original file line number Diff line number Diff line change 1+ # -------------------------------------------------------------------------------#
2+ # Qodana analysis is configured by qodana.yaml file #
3+ # https://www.jetbrains.com/help/qodana/qodana-yaml.html #
4+ # -------------------------------------------------------------------------------#
5+ version : " 1.0"
6+
7+ # Specify inspection profile for code analysis
8+ profile :
9+ name : qodana.starter
10+
11+ # Enable inspections
12+ # include:
13+ # - name: <SomeEnabledInspectionId>
14+
15+ # Disable inspections
16+ # exclude:
17+ # - name: <SomeDisabledInspectionId>
18+ # paths:
19+ # - <path/where/not/run/inspection>
20+
21+ projectJDK : " 21" # (Applied in CI/CD pipeline)
22+
23+ # Execute shell command before Qodana execution (Applied in CI/CD pipeline)
24+ # bootstrap: sh ./prepare-qodana.sh
25+
26+ # Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
27+ # plugins:
28+ # - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
29+
30+ # Specify Qodana linter for analysis (Applied in CI/CD pipeline)
31+ linter : jetbrains/qodana-jvm:2024.3
You can’t perform that action at this time.
0 commit comments