Skip to content

Commit c585d94

Browse files
committed
Remove redundant compatibility testing
The Maven extension controls the version of the Develocity extension with which it is used so there's no need to perform compatibility testing with other versions.
1 parent 5408259 commit c585d94

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

develocity-conventions-maven-extension/build.gradle

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ plugins {
22
id "build-conventions"
33
id "java"
44
id "maven-publish"
5-
id "io.spring.compatibility-test" version "0.0.2"
65
}
76

87
description = "Develocity Conventions Maven extension"
@@ -14,7 +13,7 @@ repositories {
1413
dependencies {
1514
compileOnly("org.apache.maven:maven-core:3.6.3")
1615
compileOnly("org.codehaus.plexus:plexus-component-annotations:1.7.1")
17-
16+
1817
implementation("com.gradle:develocity-maven-extension:1.22")
1918
implementation(project(":develocity-conventions-core"))
2019

@@ -30,14 +29,3 @@ publishing {
3029
}
3130
}
3231
}
33-
34-
compatibilityTest {
35-
useJUnitPlatform()
36-
dependency('Develocity Maven Extension') { develocityExtension ->
37-
develocityExtension.groupId = 'com.gradle'
38-
develocityExtension.artifactId = 'develocity-maven-extension'
39-
develocityExtension.versions = [
40-
'1.21.6'
41-
]
42-
}
43-
}

0 commit comments

Comments
 (0)