Skip to content

Commit

Permalink
2024-10-09 09:56:46
Browse files Browse the repository at this point in the history
  • Loading branch information
yingzhuo committed Oct 9, 2024
1 parent 3396f3e commit 9bc19a6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Test with Maven
run: mvn --batch-mode --update-snapshots --file pom.xml test
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Test with Maven
run: mvn --batch-mode --update-snapshots --file pom.xml test

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
import spring.turbo.module.jackson.util.JacksonModuleUtils;

/**
* 加载Jackson模块
*
* @author 应卓
* @since 3.3.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
import org.springframework.context.annotation.Bean;

/**
* 初始化 {@link spring.turbo.module.jackson.util.JsonUtils}
*
* @author 应卓
* @since 3.3.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ public final class SimpleTypeRef<T> extends TypeRef<T> {
private final Class<T> clz;

public SimpleTypeRef(Class<T> clz) {

this.clz = clz;
}

Expand Down

0 comments on commit 9bc19a6

Please sign in to comment.