Skip to content

Commit 9f09958

Browse files
committed
refactor: 优化
1 parent 737b56f commit 9f09958

File tree

27 files changed

+27
-27
lines changed

27 files changed

+27
-27
lines changed

.github/workflows/maven-publish-4x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ jobs:
4343
4444
# Step 4: 构建并发布到 Maven 私有仓库
4545
- name: Build and Deploy to Maven
46-
run: mvn clean deploy -DskipTests -pl "$(./changes.sh)"
46+
run: mvn clean deploy -q -DskipTests -pl "$(./changes.sh)"

.github/workflows/maven-publish-5x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ jobs:
4343
4444
# Step 4: 构建并发布到 Maven 私有仓库
4545
- name: Build and Deploy to Maven
46-
run: mvn clean deploy -DskipTests -pl "$(./changes.sh)"
46+
run: mvn clean deploy -q -DskipTests -pl "$(./changes.sh)"

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
path: ~/.m2
2222
key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }}
2323
- name: Build with Maven
24-
run: ./mvnw test
24+
run: ./mvnw test -q

.github/workflows/pull_request_5x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
path: ~/.m2
2222
key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }}
2323
- name: Build with Maven
24-
run: ./mvnw test
24+
run: ./mvnw test -q

hsweb-authorization/hsweb-authorization-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<name>${artifactId}</name>
12+
<name>${project.artifactId}</name>
1313
<description>授权,权限管理API</description>
1414
<artifactId>hsweb-authorization-api</artifactId>
1515
<dependencies>

hsweb-authorization/hsweb-authorization-basic/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<name>${artifactId}</name>
12+
<name>${project.artifactId}</name>
1313
<artifactId>hsweb-authorization-basic</artifactId>
1414

1515
<description>实现hsweb-authorization-api的相关接口以及使用aop实现RBAC和数据权限的控制</description>

hsweb-authorization/hsweb-authorization-oauth2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<name>${artifactId}</name>
12+
<name>${project.artifactId}</name>
1313
<artifactId>hsweb-authorization-oauth2</artifactId>
1414

1515
<dependencies>

hsweb-authorization/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<name>${artifactId}</name>
12+
<name>${project.artifactId}</name>
1313
<artifactId>hsweb-authorization</artifactId>
1414
<packaging>pom</packaging>
1515
<modules>

hsweb-commons/hsweb-commons-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>hsweb-commons-api</artifactId>
13-
<name>${artifactId}</name>
13+
<name>${project.artifactId}</name>
1414

1515
<dependencies>
1616
<dependency>

hsweb-commons/hsweb-commons-crud/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>hsweb-commons-crud</artifactId>
13-
<name>${artifactId}</name>
13+
<name>${project.artifactId}</name>
1414

1515
<dependencies>
1616

0 commit comments

Comments
 (0)