Skip to content

Commit 0214c68

Browse files
committed
Fixed gradle.
1 parent 633606f commit 0214c68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
env:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4141
SONAR_TOKEN: 19107c464b65c0769768d4564dd1c9b0c2822edd
42-
run: chmod +x gradlew && ./gradlew spotlessJavaCheck test jacocoTestReport sonarqube -Dsonar.projectKey=javadev_LeetCode-in-Kotlin -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=javadev-github --no-daemon
42+
run: chmod +x gradlew && ./gradlew test jacocoTestReport sonarqube -Dsonar.projectKey=javadev_LeetCode-in-Kotlin -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=javadev-github --no-daemon
4343
- uses: codecov/codecov-action@v1
4444
with:
4545
file: ./**/build/reports/jacoco/test/jacocoTestReport.xml

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
kotlin("jvm") version "1.6.10"
33
jacoco
4-
org.sonarqube version "3.3"
4+
id("org.sonarqube") version "3.3"
55
`maven-publish`
66
}
77

0 commit comments

Comments
 (0)