Compare commits

..

13 Commits

Author SHA1 Message Date
c2e75ef94d Update for next development version [skip ci] 2024-09-11 11:43:27 +00:00
35b45e3da4 Merge tag '1.0.8' into develop
Tag release
2024-09-11 11:43:25 +00:00
78dc349290 [RELEASE] 1.0.8
Some checks failed
RELEASE - Build and Publish Maven Artifact and Docker Image / Build Java Package and Publish (push) Has been cancelled
RELEASE - Build and Publish Maven Artifact and Docker Image / build-docker (linux/amd64) (push) Has been cancelled
RELEASE - Build and Publish Maven Artifact and Docker Image / build-docker (linux/arm64) (push) Has been cancelled
RELEASE - Build and Publish Maven Artifact and Docker Image / merge-docker (push) Has been cancelled
2024-09-11 11:43:25 +00:00
4ad93a4b7e Update versions for release 2024-09-11 11:43:00 +00:00
31a3e786cd Merge pull request #19 from 3dwardch3ng/develop
release
2024-09-11 21:42:31 +10:00
cd5ef6bf02 add springdoc config 2024-09-11 21:36:44 +10:00
917db3eafb update super pom version 2024-09-11 21:34:33 +10:00
4a89510fc8 add config server user creds 2024-09-11 21:31:41 +10:00
97b272d5c8 add commons security library 2024-09-11 21:12:33 +10:00
6ec906f156 Merge pull request #18 from 3dwardch3ng/renovate/actions-setup-java-4.x
chore(deps): update actions/setup-java action to v4.3.0
2024-09-10 16:25:59 +10:00
renovate[bot]
2ee6a3ffec chore(deps): update actions/setup-java action to v4.3.0 2024-09-09 16:32:58 +00:00
37f8d6a250 Revert "add GHA pipeline for sonarqube test"
This reverts commit e27ca00044.
2024-09-09 21:07:06 +10:00
e27ca00044 add GHA pipeline for sonarqube test 2024-09-09 21:06:03 +10:00
4 changed files with 28 additions and 9 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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>

View File

@@ -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:
@@ -47,4 +53,12 @@ spring:
eureka:
client:
enabled: false
enabled: false
springdoc:
swagger-ui:
path: /swagger-ui.html
displayRequestDuration: true
api-docs:
path: /api-docs
show-actuator: true