Skip to content

Commit

Permalink
Remove redundant compatibility testing
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
wilkinsona committed Sep 11, 2024
1 parent 5408259 commit c585d94
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions develocity-conventions-maven-extension/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ plugins {
id "build-conventions"
id "java"
id "maven-publish"
id "io.spring.compatibility-test" version "0.0.2"
}

description = "Develocity Conventions Maven extension"
Expand All @@ -14,7 +13,7 @@ repositories {
dependencies {
compileOnly("org.apache.maven:maven-core:3.6.3")
compileOnly("org.codehaus.plexus:plexus-component-annotations:1.7.1")

implementation("com.gradle:develocity-maven-extension:1.22")
implementation(project(":develocity-conventions-core"))

Expand All @@ -30,14 +29,3 @@ publishing {
}
}
}

compatibilityTest {
useJUnitPlatform()
dependency('Develocity Maven Extension') { develocityExtension ->
develocityExtension.groupId = 'com.gradle'
develocityExtension.artifactId = 'develocity-maven-extension'
develocityExtension.versions = [
'1.21.6'
]
}
}

0 comments on commit c585d94

Please sign in to comment.