Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
6f6cbd35c4 | |||
90c156e791 |
3 changed files with 28 additions and 1 deletions
23
.gitea/workflows/sonarqube.yaml
Normal file
23
.gitea/workflows/sonarqube.yaml
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
name: SonarQube Scan
|
||||
jobs:
|
||||
sonarqube:
|
||||
name: SonarQube Trigger
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checking out
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: SonarQube Scan
|
||||
uses: https://github.com/kitabisa/sonarqube-action@v1.2.1
|
||||
with:
|
||||
host: ${{ secrets.SONARQUBE_HOST }}
|
||||
login: ${{ secrets.SONARQUBE_TOKEN }}
|
|
@ -1,3 +1,7 @@
|
|||
## [0.1.1]
|
||||
### 🛠 Build
|
||||
- [90c156e](https://w9r.dev/pom/dependencies/commits/90c156e) add Sonarqube pipeline
|
||||
|
||||
## [0.1.0]
|
||||
### 🚀 Features
|
||||
- [e3591ac](https://w9r.dev/pom/dependencies/commits/e3591ac) add dependencies for json logging directly to POM
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
|||
|
||||
<groupId>dev.w9r.pom</groupId>
|
||||
<artifactId>dependencies</artifactId>
|
||||
<version>0.1.0</version>
|
||||
<version>0.1.1</version>
|
||||
|
||||
<name>Common Dependency Project Object Model for Maven Builds</name>
|
||||
<description>Common dependencies and management of their versions</description>
|
||||
|
|
Loading…
Add table
Reference in a new issue