Skip to content

Commit 82ea8f6

Browse files
committed
Remove Sonar from CI
May set up automatic Sonarqube-side analysis later
1 parent baa7380 commit 82ea8f6

2 files changed

Lines changed: 3 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ on:
77

88
jobs:
99
build:
10-
uses: Jikoo/PlanarActions/.github/workflows/ci_gradle_sonar.yml@master
11-
secrets:
12-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
10+
uses: Jikoo/PlanarActions/.github/workflows/ci_gradle.yml@master
11+
with:
12+
include-artifacts: "./enchanting-bundler/build/libs/*.jar"

build.gradle.kts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent
55
plugins {
66
`java-library`
77
jacoco
8-
alias(libs.plugins.org.sonarqube)
98
}
109

1110
repositories {
@@ -84,14 +83,3 @@ tasks.jacocoTestReport {
8483
// executionData.setFrom(subprojects.jacocoTestReport.executionData)
8584
// executionData.setFrom(files(subprojects.map { executionData }))
8685
}
87-
88-
sonar {
89-
properties {
90-
property("sonar.projectKey", "Jikoo_PlanarEnchanting")
91-
property("sonar.organization", "jikoo")
92-
property("sonar.host.url", "https://sonarcloud.io")
93-
property("sonar.language", "java")
94-
property("sonar.java.coveragePlugin", "jacoco")
95-
property("sonar.coverage.jacoco.xmlReportPaths", "build/reports/jacoco/test/jacocoTestReport.xml")
96-
}
97-
}

0 commit comments

Comments
 (0)