Skip to content

Commit

Permalink
fix: fix anming issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Dec 10, 2023
1 parent 37ad4f3 commit 565c2ca
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ see in [config-example](examples/project-example/)

```groovy
dependencies {
implementation("cc.unitmesh:unit-picker:0.1.4")
implementation("cc.unitmesh:code-quality:0.1.4")
implementation("cc.unitmesh:unit-picker:0.1.5")
implementation("cc.unitmesh:code-quality:0.1.5")
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ allprojects {
}

group = "cc.unitmesh"
version = "0.1.4"
version = "0.1.5"

java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ interface QualityAnalyser {
when (type) {
CodeQualityType.BadSmell -> BadsmellAnalyser(thresholds)
CodeQualityType.TestBadSmell -> TestBadsmellAnalyser(thresholds)
CodeQualityType.JavaController -> JavaRepositoryAnalyser(thresholds)
CodeQualityType.JavaRepository -> JavaServiceAnalyser(thresholds)
CodeQualityType.JavaService -> JavaControllerAnalyser(thresholds)
CodeQualityType.JavaController -> JavaControllerAnalyser(thresholds)
CodeQualityType.JavaRepository -> JavaRepositoryAnalyser(thresholds)
CodeQualityType.JavaService -> JavaServiceAnalyser(thresholds)
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ see in [config-example](examples/project-example/)

```groovy
dependencies {
implementation("cc.unitmesh:unit-picker:0.1.4")
implementation("cc.unitmesh:code-quality:0.1.4")
implementation("cc.unitmesh:unit-picker:0.1.5")
implementation("cc.unitmesh:code-quality:0.1.5")
}
```

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ include(

"code-quality",

"examples:project-example",
// "examples:project-example",
)

0 comments on commit 565c2ca

Please sign in to comment.