Results 176 comments of zrlw

do you open the failing links to check the reason? ``` ERROR the following files don't have a valid license header: dubbo-demo/dubbo-demo-xds/META-INF/dubbo/internal/org.apache.dubbo.registry.RegistryFactory dubbo-demo/dubbo-demo-xds/consumer-services.yaml dubbo-demo/dubbo-demo-xds/destination-rule.yaml dubbo-demo/dubbo-demo-xds/header-matching-virtualservice.yaml dubbo-demo/dubbo-demo-xds/kind-config.yaml dubbo-demo/dubbo-demo-xds/path-matching-virtualservice.yaml dubbo-demo/dubbo-demo-xds/provider-service.yaml dubbo-demo/dubbo-demo-xds/provider-v1.yaml dubbo-demo/dubbo-demo-xds/provider-v2.yaml...

> Hi [@zrlw](https://github.com/zrlw) - could you confirm you understand there are two options `--target` and `--release` for `javac` that serve different purpose and act differently? 1. https://github.com/apache/maven-compiler-plugin/blob/master/src/site/markdown/examples/set-compiler-release.md?plain=1#L20 Starting with JDK...

https://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html Merely setting the target option does not guarantee that your code actually runs on a JRE with the specified version. The pitfall is unintended usage of APIs that only...

``` unlike the old --source and --target options, the compiler will detect and generate an error when using APIs that don't exist in previous releases of Java SE. ``` it...