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 - 2020
- hoxton - hoxton
- greenwich - greenwich
- release/*
pull_request: pull_request:
branches: branches:
- 2024 - 2024
@ -19,6 +20,7 @@ on:
- 2020 - 2020
- hoxton - hoxton
- greenwich - greenwich
- release/*
jobs: jobs:
set-jdks: set-jdks:

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

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

@ -90,7 +90,7 @@
<properties> <properties>
<!-- Project revision --> <!-- 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 -->
<spring.framework.version>6.0.22</spring.framework.version> <spring.framework.version>6.0.22</spring.framework.version>

@ -71,10 +71,10 @@
<properties> <properties>
<!-- Project revision --> <!-- 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 SDK version -->
<polaris.version>2.0.1.0-SNAPSHOT</polaris.version> <polaris.version>2.0.1.0</polaris.version>
<!-- Dependencies --> <!-- Dependencies -->
<springdoc.version>2.2.0</springdoc.version> <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.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
@FeignClient(name = "provider-demo") @FeignClient(name = "${provider.name:provider-demo}")
public interface ProviderDemoService { public interface ProviderDemoService {
@RequestMapping(value = "/echo/{str}", method = RequestMethod.GET) @RequestMapping(value = "/echo/{str}", method = RequestMethod.GET)
String echo(@PathVariable("str") String str); String echo(@PathVariable("str") String str);

Loading…
Cancel
Save