File tree Expand file tree Collapse file tree 9 files changed +12
-9
lines changed
sonar-kotlin-external-linters Expand file tree Collapse file tree 9 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -289,10 +289,14 @@ artifactory {
289
289
}
290
290
291
291
tasks.register<CreateKotlinRuleStubsTask >(" setupRuleStubs" ) {
292
+ group = " Rules"
293
+ description = " Generate required stubs for a new Kotlin rule"
292
294
finalizedBy(tasks.findByPath(" :generateRuleMetadata" ))
293
295
}
294
296
295
297
tasks.register<CreateKotlinGradleRuleStubsTask >(" setupGradleRuleStubs" ) {
298
+ group = " Rules"
299
+ description = " Generate required stubs for a new Kotlin Gradle DSL rule"
296
300
finalizedBy(tasks.findByPath(" :generateRuleMetadata" ))
297
301
}
298
302
Original file line number Diff line number Diff line change @@ -14,18 +14,17 @@ dependencies {
14
14
implementation(libs.gson)
15
15
implementation(libs.sonar.analyzer.commons.recognizers)
16
16
17
+ testRuntimeOnly(testLibs.junit.engine)
17
18
testImplementation(libs.slf4j.api)
18
19
testImplementation(testLibs.junit.api)
19
20
testImplementation(testLibs.junit.params)
20
- testRuntimeOnly(testLibs.junit.engine)
21
21
testImplementation(testLibs.assertj.core)
22
22
testImplementation(testLibs.mockito.core)
23
23
testImplementation(testLibs.mockk)
24
24
testImplementation(testLibs.classgraph)
25
25
testImplementation(testLibs.sonar.analyzer.test.commons)
26
26
testImplementation(testLibs.sonar.plugin.api.impl)
27
27
testImplementation(testLibs.sonar.plugin.api.test.fixtures)
28
-
29
28
testImplementation(project(" :sonar-kotlin-test-api" ))
30
29
}
31
30
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ dependencies {
15
15
16
16
implementation(project(" :sonar-kotlin-api" ))
17
17
18
+ testRuntimeOnly(testLibs.junit.engine)
18
19
testImplementation(testLibs.junit.api)
19
20
testImplementation(testLibs.junit.params)
20
- testRuntimeOnly(testLibs.junit.engine)
21
21
testImplementation(testLibs.assertj.core)
22
22
testImplementation(testLibs.mockito.core)
23
23
testImplementation(testLibs.mockk)
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ dependencies {
16
16
17
17
implementation(project(" :sonar-kotlin-api" ))
18
18
19
+ testRuntimeOnly(testLibs.junit.engine)
19
20
testImplementation(libs.slf4j.api)
20
21
testImplementation(testLibs.junit.api)
21
22
testImplementation(testLibs.junit.params)
22
- testRuntimeOnly(testLibs.junit.engine)
23
23
testImplementation(testLibs.assertj.core)
24
24
testImplementation(testLibs.mockito.core)
25
25
testImplementation(testLibs.mockk)
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ dependencies {
22
22
implementation(project(" :sonar-kotlin-api" ))
23
23
implementation(project(" :sonar-kotlin-surefire" ))
24
24
25
+ testRuntimeOnly(testLibs.junit.engine)
25
26
testImplementation(libs.slf4j.api)
26
27
testImplementation(testLibs.junit.api)
27
28
testImplementation(testLibs.junit.params)
28
- testRuntimeOnly(testLibs.junit.engine)
29
29
testImplementation(testLibs.assertj.core)
30
30
testImplementation(testLibs.mockito.core)
31
31
testImplementation(testLibs.mockk)
Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ dependencies {
20
20
implementation(project(" :sonar-kotlin-api" ))
21
21
implementation(project(" :sonar-kotlin-checks" ))
22
22
23
+ testRuntimeOnly(testLibs.junit.engine)
23
24
testImplementation(testLibs.junit.api)
24
25
testImplementation(testLibs.junit.params)
25
- testRuntimeOnly(testLibs.junit.engine)
26
26
testImplementation(testLibs.assertj.core)
27
27
testImplementation(testLibs.mockito.core)
28
28
testImplementation(testLibs.mockk)
Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ dependencies {
31
31
implementation(project(" :sonar-kotlin-surefire" ))
32
32
implementation(project(" :sonar-kotlin-checks" ))
33
33
34
+ testRuntimeOnly(testLibs.junit.engine)
34
35
testImplementation(libs.slf4j.api)
35
36
testImplementation(testLibs.junit.api)
36
37
testImplementation(testLibs.junit.params)
37
- testRuntimeOnly(testLibs.junit.engine)
38
38
testImplementation(testLibs.assertj.core)
39
39
testImplementation(testLibs.mockito.core)
40
40
testImplementation(testLibs.mockk)
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ dependencies {
16
16
17
17
implementation(project(" :sonar-kotlin-api" ))
18
18
19
+ testRuntimeOnly(testLibs.junit.engine)
19
20
testImplementation(libs.slf4j.api)
20
21
testImplementation(testLibs.junit.api)
21
22
testImplementation(testLibs.junit.params)
22
- testRuntimeOnly(testLibs.junit.engine)
23
23
testImplementation(testLibs.assertj.core)
24
24
testImplementation(testLibs.mockito.core)
25
25
testImplementation(testLibs.mockk)
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ dependencies {
21
21
implementation(libs.gson)
22
22
implementation(utilLibs.jcommander)
23
23
24
+ testRuntimeOnly(testLibs.junit.engine)
24
25
testImplementation(testLibs.junit.api)
25
26
testImplementation(testLibs.assertj.core)
26
27
testImplementation(libs.sonar.plugin.api)
27
28
28
- testRuntimeOnly(testLibs.junit.engine)
29
29
implementation(project(" :sonar-kotlin-external-linters" ))
30
30
}
31
31
You can’t perform that action at this time.
0 commit comments