Skip to content
Snippets Groups Projects
Commit 6b541d0c authored by Arnaud LABOUREL's avatar Arnaud LABOUREL
Browse files

Added sonarlint gradle config

parent e08f5fa7
No related branches found
No related tags found
No related merge requests found
# M1 INFO FSI TP 4 # M1 INFO FSI TP 4
Lancer PMD avec la commande suivante : - Lancer PMD sur le code `main` avec la commande suivante :
``` ```
./gradlew pmdMain ./gradlew pmdMain
``` ```
- Lancer PMD sur le code `test` avec la commande suivante :
```
./gradlew pmdTest
```
- Lancer SpotBugs sur le code `main` avec la commande suivante :
```
./gradlew spotbugsMain
```
- Lancer SpotBugs sur le code `test` avec la commande suivante :
```
./gradlew spotbugsTest
```
- Lancer sonarlint sur le code `main` avec la commande suivante :
```
./gradlew sonarlintMain
```
- Lancer sonarlint sur le code `test` avec la commande suivante :
```
./gradlew sonarlintTest
```
\ No newline at end of file
...@@ -3,6 +3,7 @@ plugins { ...@@ -3,6 +3,7 @@ plugins {
id("application") id("application")
id("pmd") id("pmd")
id("com.github.spotbugs") version "6.1.3" id("com.github.spotbugs") version "6.1.3"
id ("name.remal.sonarlint") version "5.1.1"
} }
repositories { repositories {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment