release 2.0.1.0-2022.0.5.

pull/1590/head 2.0.1.0-2022.0.5
Haotian Zhang 4 months ago
parent ef12e9ffb0
commit 38d2c378a2

@ -10,6 +10,7 @@ on:
- 2020
- hoxton
- greenwich
- release/*
pull_request:
branches:
- 2024
@ -19,6 +20,7 @@ on:
- 2020
- hoxton
- greenwich
- release/*
jobs:
set-jdks:

@ -10,6 +10,7 @@ on:
- 2020
- hoxton
- greenwich
- release/*
pull_request:
branches:
- 2024
@ -19,6 +20,7 @@ on:
- 2020
- hoxton
- greenwich
- release/*
jobs:
check-license:
runs-on: ubuntu-latest

@ -10,6 +10,7 @@ on:
- 2020
- hoxton
- greenwich
- release/*
jobs:
check-snapshot:

@ -90,7 +90,7 @@
<properties>
<!-- Project revision -->
<revision>2.0.1.0-2022.0.5-SNAPSHOT</revision>
<revision>2.0.1.0-2022.0.5</revision>
<!-- Spring Framework -->
<spring.framework.version>6.0.22</spring.framework.version>

@ -71,10 +71,10 @@
<properties>
<!-- Project revision -->
<revision>2.0.1.0-2022.0.5-SNAPSHOT</revision>
<revision>2.0.1.0-2022.0.5</revision>
<!-- Polaris SDK version -->
<polaris.version>2.0.1.0-SNAPSHOT</polaris.version>
<polaris.version>2.0.1.0</polaris.version>
<!-- Dependencies -->
<springdoc.version>2.2.0</springdoc.version>

@ -23,7 +23,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
@FeignClient(name = "provider-demo")
@FeignClient(name = "${provider.name:provider-demo}")
public interface ProviderDemoService {
@RequestMapping(value = "/echo/{str}", method = RequestMethod.GET)
String echo(@PathVariable("str") String str);

Loading…
Cancel
Save