Compare commits

...

2 Commits

Author SHA1 Message Date
5591b8abab Make method synchronized
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-14 23:30:57 +01:00
5afb398299 Update DroneCI config 2023-01-14 23:27:50 +01:00
3 changed files with 21 additions and 7 deletions

View File

@ -10,13 +10,20 @@ steps:
image: maven:3-eclipse-temurin-16 image: maven:3-eclipse-temurin-16
commands: commands:
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V - mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- find
- mvn javadoc:javadoc - mvn javadoc:javadoc
- find
- mvn test -B - mvn test -B
- find
- name: code-analysis - name: code-analysis
image: aosapps/drone-sonar-plugin image: maven:3-eclipse-temurin-16
settings: commands:
sonar_host: - mvn sonar:sonar -Dsonar.projectKey=$SONAR_PROJECT_KEY -Dsonar.host.url=$SONAR_INSTANCE_URL -Dsonar.login=$SONAR_LOGIN_KEY
from_secret: sonar_host environment:
sonar_token: SONAR_PROJECT_KEY:
from_secret: sonar_token from_secret: sonar_project_key
SONAR_INSTANCE_URL:
from_secret: sonar_instance_url
SONAR_LOGIN_KEY:
from_secret: sonar_login_key

View File

@ -97,6 +97,13 @@
<version>3.4.1</version> <version>3.4.1</version>
</plugin> </plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.9.1.2184</version>
</plugin>
</plugins> </plugins>
</build> </build>

View File

@ -101,7 +101,7 @@ public class Cache
* *
* @param v the verbosity boolean value * @param v the verbosity boolean value
*/ */
public static void setVerbose(boolean v) public static synchronized void setVerbose(boolean v)
{ {
verbose = v; verbose = v;