Compare commits
13 Commits
c746c8fb8a
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
| c2e75ef94d | |||
| 35b45e3da4 | |||
| 78dc349290 | |||
| 4ad93a4b7e | |||
| 31a3e786cd | |||
| cd5ef6bf02 | |||
| 917db3eafb | |||
| 4a89510fc8 | |||
| 97b272d5c8 | |||
| 6ec906f156 | |||
|
|
2ee6a3ffec | ||
| 37f8d6a250 | |||
| e27ca00044 |
@@ -26,7 +26,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- uses: actions/setup-java@v4.2.2
|
||||
- uses: actions/setup-java@v4.3.0
|
||||
if: ${{ hashFiles('**/pom.xml') }}
|
||||
with:
|
||||
java-version: 17
|
||||
@@ -77,7 +77,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- uses: actions/setup-java@v4.2.2
|
||||
- uses: actions/setup-java@v4.3.0
|
||||
if: ${{ hashFiles('**/pom.xml') }}
|
||||
with:
|
||||
java-version: 17
|
||||
@@ -162,7 +162,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- uses: actions/setup-java@v4.2.2
|
||||
- uses: actions/setup-java@v4.3.0
|
||||
if: ${{ hashFiles('**/pom.xml') }}
|
||||
with:
|
||||
java-version: 17
|
||||
|
||||
@@ -26,7 +26,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- uses: actions/setup-java@v4.2.2
|
||||
- uses: actions/setup-java@v4.3.0
|
||||
if: ${{ hashFiles('**/pom.xml') }}
|
||||
with:
|
||||
java-version: 17
|
||||
@@ -95,7 +95,7 @@ jobs:
|
||||
with:
|
||||
ref: main
|
||||
fetch-depth: 1
|
||||
- uses: actions/setup-java@v4.2.2
|
||||
- uses: actions/setup-java@v4.3.0
|
||||
if: ${{ hashFiles('**/pom.xml') }}
|
||||
with:
|
||||
java-version: 17
|
||||
@@ -181,7 +181,7 @@ jobs:
|
||||
with:
|
||||
ref: main
|
||||
fetch-depth: 1
|
||||
- uses: actions/setup-java@v4.2.2
|
||||
- uses: actions/setup-java@v4.3.0
|
||||
if: ${{ hashFiles('**/pom.xml') }}
|
||||
with:
|
||||
java-version: 17
|
||||
|
||||
9
pom.xml
9
pom.xml
@@ -7,11 +7,11 @@
|
||||
<parent>
|
||||
<groupId>sydney.cheng</groupId>
|
||||
<artifactId>ec-super-pom</artifactId>
|
||||
<version>1.0.4</version>
|
||||
<version>1.0.5</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>ec-config-server</artifactId>
|
||||
<version>1.0.8-SNAPSHOT</version>
|
||||
<version>1.0.9-SNAPSHOT</version>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
@@ -53,6 +53,11 @@
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>sydney.cheng</groupId>
|
||||
<artifactId>ec-microservice-commons-swagger</artifactId>
|
||||
<version>1.0.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||
|
||||
@@ -37,6 +37,12 @@ spring:
|
||||
name: ${application.name}
|
||||
profiles:
|
||||
active: native
|
||||
security:
|
||||
basic:
|
||||
enabled: true
|
||||
user:
|
||||
name: ${CONFIG_SERVER_USERNAME:configuser}
|
||||
password: ${CONFIG_SERVER_PASSWORD:configPass$1234}
|
||||
cloud:
|
||||
config:
|
||||
server:
|
||||
@@ -48,3 +54,11 @@ spring:
|
||||
eureka:
|
||||
client:
|
||||
enabled: false
|
||||
|
||||
springdoc:
|
||||
swagger-ui:
|
||||
path: /swagger-ui.html
|
||||
displayRequestDuration: true
|
||||
api-docs:
|
||||
path: /api-docs
|
||||
show-actuator: true
|
||||
Reference in New Issue
Block a user