Skip to content

Commit 7ea9891

Browse files
committed
Test adding python to sonarqube analysis
1 parent 8c4b352 commit 7ea9891

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
// project meta data
66
group 'de.havox_design.aoc2023'
7-
version '0.24.0'
7+
version '0.24.1'
88

99
// Switch to gradle "all" distribution.
1010
wrapper {

day24/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,16 @@ afterEvaluate {
7272

7373
compileKotlin.dependsOn(solverTask)
7474
}
75+
76+
sourceSets {
77+
main {
78+
java {
79+
srcDir project.file('src/main/python')
80+
}
81+
}
82+
}
83+
sonar {
84+
properties {
85+
property 'sonar.python.version', '3.12'
86+
}
87+
}

0 commit comments

Comments
 (0)