Skip to content

Commit 9bcfa81

Browse files
committed
Merge branch 'master' into issue69
2 parents a57fed5 + ff23ac2 commit 9bcfa81

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,9 @@ jobs:
3838
env:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4040
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
41-
run: mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar
41+
run: |
42+
if [[ $SONAR_TOKEN != "" ]]; then
43+
mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar
44+
else
45+
mvn --batch-mode --update-snapshots verify
46+
fi

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<dependency>
9494
<groupId>org.apache.logging.log4j</groupId>
9595
<artifactId>log4j-slf4j-impl</artifactId>
96-
<version>2.10.0</version>
96+
<version>2.15.0</version>
9797
</dependency>
9898
<dependency>
9999
<groupId>org.apache.commons</groupId>

0 commit comments

Comments
 (0)