Skip to content

Commit

Permalink
upgrade spotbugsAnnotationsVersion=4.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLiu1123 committed Jun 17, 2024
1 parent f86d8a4 commit ca6b843
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.rodnansol:spring-configuration-property-documenter-gradle-plugin:${springConfigurationPropertyDocumenterVersion}"
Expand Down Expand Up @@ -29,7 +29,7 @@ allprojects {
}

java {
registerFeature("optionalSuppor") {
registerFeature("optionalSupport") {
usingSourceSet(sourceSets.optionalSupport)
}
}
Expand Down
7 changes: 4 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ protovalidateVersion=0.2.1
# https://plugins.gradle.org/plugin/com.diffplug.gradle.spotless
spotlessVersion=6.25.0
# https://plugins.gradle.org/plugin/com.github.spotbugs
spotbugsVersion=6.0.16
spotbugsAnnotationsVersion=4.8.3
spotbugsVersion=6.0.17
# https://github.com/spotbugs/spotbugs-gradle-plugin/blob/master/build.gradle.kts
spotbugsAnnotationsVersion=4.8.5

# Others
javaxValidationApiVersion=1.3.2
classpathReplacerVersion=2.1.2

org.gradle.jvmargs=-Xmx1g
org.gradle.jvmargs=-Xmx2g
12 changes: 6 additions & 6 deletions website/docs/40-configuration-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,16 +284,16 @@ This page was generated by [spring-configuration-property-documenter](https://gi

|Key|Type|Description|Default value|Deprecation|
|---|----|-----------|-------------|-----------|
| auto-mapping| java.lang.Boolean| | | |
| enabled| java.lang.Boolean| | | |
| endpoint| java.lang.String| | | |
| auto-mapping| java.lang.Boolean| Whether to route methods without the `google.api.http` option, default true. <p> Example: <pre>\{@code package bookstore; service Bookstore \{ rpc GetShelf(GetShelfRequest) returns (Shelf) \{} } message GetShelfRequest \{ int64 shelf = 1; } message Shelf \{} }</pre> <p> The client could `post` a json body `\{"shelf": 1234}` with the path of `/bookstore.Bookstore/GetShelfRequest` to call `GetShelfRequest`.| true| |
| enabled| java.lang.Boolean| Whether to enable transcoding autoconfiguration, default \{@code true}.| true| |
| endpoint| java.lang.String| gRPC server endpoint, if not set, will use \{@code localhost:$\{grpc.server.port}}. <p> In most cases, do not need to set this property explicitly.| | |
### grpc.transcoding.print-options
**Class:** `grpcstarter.extensions.transcoding.GrpcTranscodingProperties$PrintOptions`

|Key|Type|Description|Default value|Deprecation|
|---|----|-----------|-------------|-----------|
| add-whitespace| java.lang.Boolean| | | |
| always-print-enums-as-ints| java.lang.Boolean| | | |
| add-whitespace| java.lang.Boolean| Whether to add spaces, line breaks and indentation to make the JSON output easy to read. Defaults to false.| false| |
| always-print-enums-as-ints| java.lang.Boolean| Whether to always print enums as ints. By default they are rendered as strings. Defaults to false.| false| |

## grpc-validation
### grpc.validation
Expand All @@ -318,4 +318,4 @@ This page was generated by [spring-configuration-property-documenter](https://gi
| enabled| java.lang.Boolean| Whether to enable validation, default is \{@code true}.| true| |
| order| java.lang.Integer| Validating interceptor order, default is \{@code 0}.| 0| |

This is a generated file, generated at: **2024-06-16T00:20:27.645654**
This is a generated file, generated at: **2024-06-17T23:49:23.853674**

0 comments on commit ca6b843

Please sign in to comment.