Skip to content

Commit

Permalink
Merge branch 'main' of github.com:josdem/status-catcher
Browse files Browse the repository at this point in the history
  • Loading branch information
josdem committed Aug 23, 2023
2 parents 0270d1c + ca0ec45 commit c4d9dba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
- name: List files in the repository
run: ls ${{ github.workspace }}
- name: Execute tests
run: ./gradlew jacocoTestReport sonarqube test
run: ./gradlew jacocoTestReport sonar test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ gradle bootRun
#### To run tests with Jacoco and Sonarqube

```bash
gradle jacocoTestReport sonarqube test
gradle jacocoTestReport sonar test
```

#### Swagger
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ plugins {
id 'java'
id 'org.springframework.boot' version '3.1.2'
id 'io.spring.dependency-management' version '1.1.2'
id "com.diffplug.spotless" version '6.20.0'
id "org.sonarqube" version '3.3'
id 'com.diffplug.spotless' version '6.20.0'
id "org.sonarqube" version '4.3.0.3225'
id 'jacoco'
}

def springDocVersion = "2.1.0"
def springDocVersion = '2.1.0'

group = 'com.josdem.catcher'
version = '1.0.0-SNAPSHOT'
Expand Down

0 comments on commit c4d9dba

Please sign in to comment.