Skip to content

Commit

Permalink
sonar token to env
Browse files Browse the repository at this point in the history
  • Loading branch information
kenu committed Oct 27, 2023
1 parent 5c2658f commit a498904
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions public/md/sonar/sonar.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ sonar.projectVersion=1.0
# If not set, SonarQube starts looking for source code from the directory containing
# the sonar-project.properties file.
sonar.sources=.
sonar.login=tokenxxxxxxxxxxxxxxxxxx
sonar.login=${SONAR_TOKEN}
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
Expand All @@ -68,7 +68,7 @@ sonar.language=java
sonar.sources=src/main/java/
sonar.java.binaries=target/classes
sonar.sourceEncoding=UTF-8
sonar.login=tokenxxxxxxxxxxxxxxxxxx
sonar.login=${SONAR_TOKEN}
```

## Python
Expand All @@ -79,7 +79,7 @@ sonar.projectKey=swlabs:django
sonar.projectName=django
sonar.sources=.
sonar.language=py
sonar.login=tokenxxxxxxxxxxxxxxxxxx
sonar.login=${SONAR_TOKEN}
```

## CPP
Expand All @@ -103,7 +103,7 @@ sonar.projectKey=cubrid:cubrid
# mandatory: files to be handled by the _cxx plugin_
sonar.cxx.file.suffixes=.h,.hpp,.c,.cpp
sonar.login=tokenxxxxxxxxxxxxxxxxxx
sonar.login=${SONAR_TOKEN}
sonar.exclusions=src/jsp/**,contrib/**
```

Expand Down

0 comments on commit a498904

Please sign in to comment.