Skip to content

Commit d56fab9

Browse files
author
Greg Meyer
authored
Merge pull request #3 from DirectProjectJavaRI/develop
Updating pom for release. Ready for 6.0 release.
2 parents e536f4b + 2564edd commit d56fab9

File tree

9 files changed

+185
-50
lines changed

9 files changed

+185
-50
lines changed

pom.xml

Lines changed: 19 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.nhind</groupId>
55
<artifactId>config-service-client</artifactId>
6-
<version>6.0-SNAPSHOT</version>
6+
<version>6.0</version>
77
<packaging>jar</packaging>
88
<name>NHIN Direct Java config service client proxy</name>
99
<description>NHIN Direct Java config service client proxy</description>
@@ -14,8 +14,8 @@
1414
<version>2.1.2.RELEASE</version>
1515
</parent>
1616
<scm>
17-
<url>scm:git:https://github.com/DirectProject/nhin-d.git</url>
18-
<connection>scm:git:https://github.com/DirectProject/nhin-d.git</connection>
17+
<url>scm:git:https://github.com/DirectProjectJavaRI/config-service-client.git</url>
18+
<connection>scm:git:https://github.com/DirectProjectJavaRI/config-service-client.git</connection>
1919
</scm>
2020

2121
<developers>
@@ -39,16 +39,8 @@
3939

4040
<properties>
4141
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42-
<spring-cloud-dependencies.version>Greenwich.RC1</spring-cloud-dependencies.version>
43-
</properties>
44-
<repositories>
45-
<!-- Temp repository for Spring Boot Milestone -->
46-
<repository>
47-
<id>spring-milestone</id>
48-
<name>Spring Milestone Releases</name>
49-
<url>https://repo.spring.io/milestone/</url>
50-
</repository>
51-
</repositories>
42+
<spring-cloud-dependencies.version>Greenwich.RELEASE</spring-cloud-dependencies.version>
43+
</properties>
5244
<dependencyManagement>
5345
<dependencies>
5446
<dependency>
@@ -68,12 +60,12 @@
6860
<dependency>
6961
<groupId>org.nhind</groupId>
7062
<artifactId>config-model</artifactId>
71-
<version>6.0-SNAPSHOT</version>
63+
<version>6.0</version>
7264
</dependency>
7365
<dependency>
7466
<groupId>org.nhind</groupId>
7567
<artifactId>direct-common</artifactId>
76-
<version>6.0-SNAPSHOT</version>
68+
<version>6.0</version>
7769
</dependency>
7870
<dependency>
7971
<groupId>org.springframework.cloud</groupId>
@@ -116,7 +108,7 @@
116108
<dependency>
117109
<groupId>org.nhind</groupId>
118110
<artifactId>config-service-jar</artifactId>
119-
<version>6.0-SNAPSHOT</version>
111+
<version>6.0</version>
120112
<scope>test</scope>
121113
</dependency>
122114
<dependency>
@@ -155,35 +147,19 @@
155147
</execution>
156148
</executions>
157149
</plugin>
158-
<plugin>
159-
<groupId>com.atlassian.maven.plugins</groupId>
160-
<artifactId>maven-clover2-plugin</artifactId>
161-
<version>3.0.2</version>
162-
<configuration>
163-
<jdk>1.6</jdk>
164-
<licenseLocation>${project.basedir}/../../licenses/clover.license</licenseLocation>
165-
</configuration>
166-
<executions>
167-
<execution>
168-
<phase>pre-site</phase>
169-
<goals>
170-
<goal>instrument</goal>
171-
</goals>
172-
</execution>
173-
</executions>
174-
</plugin>
175-
<!-- for releases only
150+
176151
<plugin>
177152
<groupId>org.apache.maven.plugins</groupId>
178153
<artifactId>maven-javadoc-plugin</artifactId>
179154
<version>2.6.1</version>
180155
<configuration>
156+
<additionalparam>-Xdoclint:none</additionalparam>
181157
<charset>UTF-8</charset>
182158
<docencoding>UTF-8</docencoding>
183-
<docfilessubdirs>false</docfilessubdirs>
184-
<detectJavaApiLink>false</detectJavaApiLink>
185-
<detectLinks>false</detectLinks>
186-
<source>1.6</source>
159+
<docfilessubdirs>true</docfilessubdirs>
160+
<detectJavaApiLink>true</detectJavaApiLink>
161+
<detectLinks>true</detectLinks>
162+
<source>1.8</source>
187163
<show>public</show>
188164
</configuration>
189165
<executions>
@@ -195,7 +171,8 @@
195171
</goals>
196172
</execution>
197173
</executions>
198-
</plugin>
174+
</plugin>
175+
<!-- for releases only
199176
<plugin>
200177
<groupId>org.apache.maven.plugins</groupId>
201178
<artifactId>maven-gpg-plugin</artifactId>
@@ -217,20 +194,21 @@
217194
<plugin>
218195
<groupId>org.apache.maven.plugins</groupId>
219196
<artifactId>maven-project-info-reports-plugin</artifactId>
220-
<version>2.1</version>
197+
<version>2.9</version>
221198
</plugin>
222199
<plugin>
223200
<groupId>org.apache.maven.plugins</groupId>
224201
<artifactId>maven-javadoc-plugin</artifactId>
225202
<version>2.6.1</version>
226203
<configuration>
204+
<additionalparam>-Xdoclint:none</additionalparam>
227205
<charset>UTF-8</charset>
228206
<docencoding>UTF-8</docencoding>
229207
<docfilessubdirs>true</docfilessubdirs>
230208
<detectJavaApiLink>true</detectJavaApiLink>
231209
<detectLinks>true</detectLinks>
232210
<source>1.8</source>
233-
<show>protected</show>
211+
<show>public</show>
234212
</configuration>
235213
</plugin>
236214
<plugin>
@@ -258,7 +236,6 @@
258236
<plugin>
259237
<groupId>org.codehaus.mojo</groupId>
260238
<artifactId>findbugs-maven-plugin</artifactId>
261-
<version>1.2</version>
262239
<configuration>
263240
<effort>Max</effort>
264241
</configuration>
@@ -275,14 +252,6 @@
275252
</tags>
276253
</configuration>
277254
</plugin>
278-
<plugin>
279-
<groupId>com.atlassian.maven.plugins</groupId>
280-
<artifactId>maven-clover2-plugin</artifactId>
281-
<version>3.0.2</version>
282-
<configuration>
283-
<licenseLocation>${project.basedir}/../../licenses/clover.license</licenseLocation>
284-
</configuration>
285-
</plugin>
286255
</plugins>
287256
</reporting>
288257

src/main/java/org/nhind/config/rest/feign/AddressClient.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*
2+
Copyright (c) 2010, NHIN Direct Project
3+
All rights reserved.
4+
5+
Authors:
6+
Greg Meyer gm2552@cerner.com
7+
8+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
9+
10+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
11+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
12+
in the documentation and/or other materials provided with the distribution. Neither the name of the The NHIN Direct Project (nhindirect.org).
13+
nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
16+
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
17+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
18+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
19+
THE POSSIBILITY OF SUCH DAMAGE.
20+
*/
21+
122
package org.nhind.config.rest.feign;
223

324
import java.util.Collection;

src/main/java/org/nhind/config/rest/feign/AnchorClient.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*
2+
Copyright (c) 2010, NHIN Direct Project
3+
All rights reserved.
4+
5+
Authors:
6+
Greg Meyer gm2552@cerner.com
7+
8+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
9+
10+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
11+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
12+
in the documentation and/or other materials provided with the distribution. Neither the name of the The NHIN Direct Project (nhindirect.org).
13+
nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
16+
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
17+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
18+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
19+
THE POSSIBILITY OF SUCH DAMAGE.
20+
*/
21+
122
package org.nhind.config.rest.feign;
223

324
import java.util.Collection;

src/main/java/org/nhind/config/rest/feign/CertificateClient.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
Copyright (c) 2010, NHIN Direct Project
3+
All rights reserved.
4+
5+
Authors:
6+
Greg Meyer gm2552@cerner.com
7+
8+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
9+
10+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
11+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
12+
in the documentation and/or other materials provided with the distribution. Neither the name of the The NHIN Direct Project (nhindirect.org).
13+
nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
16+
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
17+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
18+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
19+
THE POSSIBILITY OF SUCH DAMAGE.
20+
*/
121
package org.nhind.config.rest.feign;
222

323
import java.util.Collection;

src/main/java/org/nhind/config/rest/feign/CertificatePolicyClient.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
Copyright (c) 2010, NHIN Direct Project
3+
All rights reserved.
4+
5+
Authors:
6+
Greg Meyer gm2552@cerner.com
7+
8+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
9+
10+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
11+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
12+
in the documentation and/or other materials provided with the distribution. Neither the name of the The NHIN Direct Project (nhindirect.org).
13+
nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
16+
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
17+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
18+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
19+
THE POSSIBILITY OF SUCH DAMAGE.
20+
*/
121
package org.nhind.config.rest.feign;
222

323
import java.util.Collection;

src/main/java/org/nhind/config/rest/feign/DNSClient.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*
2+
Copyright (c) 2010, NHIN Direct Project
3+
All rights reserved.
4+
5+
Authors:
6+
Greg Meyer gm2552@cerner.com
7+
8+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
9+
10+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
11+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
12+
in the documentation and/or other materials provided with the distribution. Neither the name of the The NHIN Direct Project (nhindirect.org).
13+
nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
16+
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
17+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
18+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
19+
THE POSSIBILITY OF SUCH DAMAGE.
20+
*/
21+
122
package org.nhind.config.rest.feign;
223

324
import java.util.Collection;

src/main/java/org/nhind/config/rest/feign/DomainClient.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*
2+
Copyright (c) 2010, NHIN Direct Project
3+
All rights reserved.
4+
5+
Authors:
6+
Greg Meyer gm2552@cerner.com
7+
8+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
9+
10+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
11+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
12+
in the documentation and/or other materials provided with the distribution. Neither the name of the The NHIN Direct Project (nhindirect.org).
13+
nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
16+
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
17+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
18+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
19+
THE POSSIBILITY OF SUCH DAMAGE.
20+
*/
21+
122
package org.nhind.config.rest.feign;
223

324
import java.util.Collection;

src/main/java/org/nhind/config/rest/feign/SettingClient.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*
2+
Copyright (c) 2010, NHIN Direct Project
3+
All rights reserved.
4+
5+
Authors:
6+
Greg Meyer gm2552@cerner.com
7+
8+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
9+
10+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
11+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
12+
in the documentation and/or other materials provided with the distribution. Neither the name of the The NHIN Direct Project (nhindirect.org).
13+
nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
16+
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
17+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
18+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
19+
THE POSSIBILITY OF SUCH DAMAGE.
20+
*/
21+
122
package org.nhind.config.rest.feign;
223

324
import java.util.Collection;

src/main/java/org/nhind/config/rest/feign/TrustBundleClient.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
/*
2+
Copyright (c) 2010, NHIN Direct Project
3+
All rights reserved.
4+
5+
Authors:
6+
Greg Meyer gm2552@cerner.com
7+
8+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
9+
10+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
11+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
12+
in the documentation and/or other materials provided with the distribution. Neither the name of the The NHIN Direct Project (nhindirect.org).
13+
nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
16+
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
17+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
18+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
19+
THE POSSIBILITY OF SUCH DAMAGE.
20+
*/
21+
122
package org.nhind.config.rest.feign;
223

324
import java.util.Collection;

0 commit comments

Comments
 (0)