File tree 15 files changed +18
-33
lines changed
spring-cloud-openfeign-core
main/java/org/springframework/cloud/openfeign
test/java/org/springframework/cloud/openfeign
spring-cloud-openfeign-dependencies
spring-cloud-starter-openfeign
15 files changed +18
-33
lines changed Original file line number Diff line number Diff line change 1
1
# Enable auto-env through the sdkman_auto_env config
2
2
# Add key=value pairs of SDKs to use below
3
- java=8 .0.292.hs-adpt
3
+ java=17 .0.1-tem
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.springframework.cloud</groupId >
8
8
<artifactId >spring-cloud-openfeign</artifactId >
9
- <version >3.1.1 -SNAPSHOT</version >
9
+ <version >4.0.0 -SNAPSHOT</version >
10
10
</parent >
11
11
<artifactId >spring-cloud-openfeign-docs</artifactId >
12
12
<packaging >jar</packaging >
Original file line number Diff line number Diff line change 4
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
5
<modelVersion >4.0.0</modelVersion >
6
6
<artifactId >spring-cloud-openfeign</artifactId >
7
- <version >3.1.1 -SNAPSHOT</version >
7
+ <version >4.0.0 -SNAPSHOT</version >
8
8
<packaging >pom</packaging >
9
9
<name >Spring Cloud OpenFeign</name >
10
10
<description >Spring Cloud OpenFeign</description >
11
11
<parent >
12
12
<groupId >org.springframework.cloud</groupId >
13
13
<artifactId >spring-cloud-build</artifactId >
14
- <version >3.1.1 -SNAPSHOT</version >
14
+ <version >4.0.0 -SNAPSHOT</version >
15
15
<relativePath />
16
16
</parent >
17
17
<scm >
26
26
<properties >
27
27
<main .basedir>${basedir} </main .basedir>
28
28
<jackson .version>2.11.3</jackson .version>
29
- <spring-cloud-commons .version>3.1.1 -SNAPSHOT</spring-cloud-commons .version>
29
+ <spring-cloud-commons .version>4.0.0 -SNAPSHOT</spring-cloud-commons .version>
30
30
31
31
<!-- Plugin versions -->
32
32
<maven-eclipse-plugin .version>2.10</maven-eclipse-plugin .version>
64
64
</additionalConfig >
65
65
</configuration >
66
66
</plugin >
67
- <plugin >
68
- <artifactId >maven-compiler-plugin</artifactId >
69
- <configuration >
70
- <source >1.8</source >
71
- <target >1.8</target >
72
- </configuration >
73
- </plugin >
74
67
<plugin >
75
68
<groupId >org.apache.maven.plugins</groupId >
76
69
<artifactId >maven-checkstyle-plugin</artifactId >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.springframework.cloud</groupId >
8
8
<artifactId >spring-cloud-openfeign</artifactId >
9
- <version >3.1.1 -SNAPSHOT</version >
9
+ <version >4.0.0 -SNAPSHOT</version >
10
10
<relativePath >..</relativePath > <!-- lookup parent from repository -->
11
11
</parent >
12
12
<artifactId >spring-cloud-openfeign-core</artifactId >
Original file line number Diff line number Diff line change 24
24
import java .util .TimerTask ;
25
25
import java .util .concurrent .TimeUnit ;
26
26
27
- import javax .annotation .PreDestroy ;
28
-
29
27
import com .fasterxml .jackson .databind .Module ;
30
28
import feign .Capability ;
31
29
import feign .Client ;
35
33
import feign .hc5 .ApacheHttp5Client ;
36
34
import feign .httpclient .ApacheHttpClient ;
37
35
import feign .okhttp .OkHttpClient ;
36
+ import jakarta .annotation .PreDestroy ;
38
37
import okhttp3 .ConnectionPool ;
39
38
import org .apache .commons .logging .Log ;
40
39
import org .apache .commons .logging .LogFactory ;
Original file line number Diff line number Diff line change 23
23
import java .security .cert .X509Certificate ;
24
24
import java .util .concurrent .TimeUnit ;
25
25
26
- import javax .annotation .PreDestroy ;
27
26
import javax .net .ssl .SSLContext ;
28
27
import javax .net .ssl .TrustManager ;
29
28
import javax .net .ssl .X509TrustManager ;
30
29
30
+ import jakarta .annotation .PreDestroy ;
31
31
import org .apache .commons .logging .Log ;
32
32
import org .apache .commons .logging .LogFactory ;
33
33
import org .apache .hc .client5 .http .config .RequestConfig ;
Original file line number Diff line number Diff line change 20
20
import java .util .Timer ;
21
21
import java .util .TimerTask ;
22
22
23
- import javax .annotation .PreDestroy ;
24
-
23
+ import jakarta .annotation .PreDestroy ;
25
24
import org .apache .commons .logging .Log ;
26
25
import org .apache .commons .logging .LogFactory ;
27
26
import org .apache .http .client .config .RequestConfig ;
Original file line number Diff line number Diff line change 18
18
19
19
import java .util .concurrent .TimeUnit ;
20
20
21
- import javax .annotation .PreDestroy ;
22
-
21
+ import jakarta .annotation .PreDestroy ;
23
22
import okhttp3 .ConnectionPool ;
24
23
import okhttp3 .OkHttpClient ;
25
24
Original file line number Diff line number Diff line change 32
32
import java .util .stream .Collectors ;
33
33
import java .util .stream .Stream ;
34
34
35
- import javax .servlet .http .HttpServletRequest ;
36
-
37
35
import feign .Capability ;
38
36
import feign .Feign ;
39
37
import feign .InvocationHandlerFactory ;
47
45
import feign .codec .Encoder ;
48
46
import feign .codec .ErrorDecoder ;
49
47
import feign .micrometer .MicrometerCapability ;
48
+ import jakarta .servlet .http .HttpServletRequest ;
50
49
import org .junit .jupiter .api .Test ;
51
50
import org .junit .jupiter .api .condition .DisabledForJreRange ;
52
51
import org .junit .jupiter .api .condition .JRE ;
Original file line number Diff line number Diff line change 21
21
import java .util .UUID ;
22
22
import java .util .function .Function ;
23
23
24
- import javax .servlet .http .HttpServletRequest ;
25
-
26
24
import feign .RequestInterceptor ;
25
+ import jakarta .servlet .http .HttpServletRequest ;
27
26
import org .junit .jupiter .api .Test ;
28
27
29
28
import org .springframework .beans .factory .ObjectProvider ;
Original file line number Diff line number Diff line change 16
16
17
17
package org .springframework .cloud .openfeign .security ;
18
18
19
- import javax .servlet .http .HttpServletRequest ;
20
-
19
+ import jakarta .servlet .http .HttpServletRequest ;
21
20
import org .junit .jupiter .api .Test ;
22
21
23
22
import org .springframework .beans .factory .annotation .Autowired ;
Original file line number Diff line number Diff line change 16
16
17
17
package org .springframework .cloud .openfeign .security ;
18
18
19
- import javax .servlet .http .HttpServletRequest ;
20
-
19
+ import jakarta .servlet .http .HttpServletRequest ;
21
20
import org .junit .jupiter .api .Test ;
22
21
23
22
import org .springframework .beans .factory .annotation .Autowired ;
Original file line number Diff line number Diff line change 32
32
import java .util .UUID ;
33
33
import java .util .stream .Collectors ;
34
34
35
- import javax .servlet .http .HttpServletRequest ;
36
- import javax .servlet .http .Part ;
37
-
38
35
import feign .Client ;
39
36
import feign .Logger ;
40
37
import feign .RequestInterceptor ;
41
38
import feign .codec .EncodeException ;
39
+ import jakarta .servlet .http .HttpServletRequest ;
40
+ import jakarta .servlet .http .Part ;
42
41
import org .junit .jupiter .api .Test ;
43
42
44
43
import org .springframework .beans .factory .annotation .Autowired ;
Original file line number Diff line number Diff line change 10
10
<relativePath />
11
11
</parent >
12
12
<artifactId >spring-cloud-openfeign-dependencies</artifactId >
13
- <version >3.1.1 -SNAPSHOT</version >
13
+ <version >4.0.0 -SNAPSHOT</version >
14
14
<packaging >pom</packaging >
15
15
<name >spring-cloud-openfeign-dependencies</name >
16
16
<description >Spring Cloud OpenFeign Dependencies</description >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.springframework.cloud</groupId >
7
7
<artifactId >spring-cloud-openfeign</artifactId >
8
- <version >3.1.1 -SNAPSHOT</version >
8
+ <version >4.0.0 -SNAPSHOT</version >
9
9
<relativePath >..</relativePath >
10
10
</parent >
11
11
<artifactId >spring-cloud-starter-openfeign</artifactId >
You can’t perform that action at this time.
0 commit comments