Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add requested URI discovery support #6030

Merged
merged 13 commits into from
Feb 28, 2023
Merged
8 changes: 7 additions & 1 deletion common/configurable/etc/spotbugs/exclude.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright (c) 2021, 2022 Oracle and/or its affiliates.
Copyright (c) 2021, 2023 Oracle and/or its affiliates.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -36,4 +36,10 @@
<Class name="io.helidon.common.configurable.ThreadPool$RateLimitGrowth"/>
<Bug pattern="PREDICTABLE_RANDOM"/>
</Match>
<Match>
<!-- False positive similar to https://github.com/spotbugs/spotbugs/issues/1877 -->
<Class name="io.helidon.common.http.RequestedUriDiscoveryContext$UnsafeRequestedUriSettingsException"/>
<Method name="&lt;init&gt;"/>
<Bug pattern = "VA_FORMAT_STRING_USES_NEWLINE"/>
</Match>
</FindBugsFilter>
5 changes: 5 additions & 0 deletions common/configurable/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
Expand Down
Loading