Skip to content

Commit

Permalink
Merge pull request #365 from micronaut-projects/remove_baseline
Browse files Browse the repository at this point in the history
Remove baseline version for binary compatibility check
  • Loading branch information
wetted authored Jul 13, 2023
2 parents d40af03 + aed78c0 commit 837d55f
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 39 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,3 @@ plugins {

components.java.withVariantsFromConfiguration(configurations.testFixturesApiElements) { skip() }
components.java.withVariantsFromConfiguration(configurations.testFixturesRuntimeElements) { skip() }

micronautBuild {
def simpleVersion = version
if (version.contains('-')) {
simpleVersion = version.substring(0, version.indexOf('-'))
}
def (String major, String minor, String patch) = simpleVersion.split("[.]")
binaryCompatibility.enabled = major.toInteger() >=2 && minor.toInteger() >= 0 && patch.toInteger() > 0
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,3 @@ dependencies {
because "exposes AbstractTestContainersSpec"
}
}

// TODO: required for now. Remove once first release of Localstack support is available
micronautBuild {
binaryCompatibility {
enabled = true
baselineVersion = "2.0.0-M12"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,3 @@ dependencies {
testImplementation(testFixtures(project(":micronaut-test-resources-localstack-core")))
testImplementation(libs.amazon.awssdk.v2.dynamodb)
}

// TODO: required for now. Remove once first release of Localstack support is available
micronautBuild {
binaryCompatibility {
enabled = true
baselineVersion = "2.0.0-M12"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,3 @@ dependencies {
testImplementation(libs.amazon.awssdk.v2.s3)
}

// TODO: required for now. Remove once first release of Localstack support is available
micronautBuild {
binaryCompatibility {
enabled = true
baselineVersion = "2.0.0-M12"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,3 @@ dependencies {
testImplementation(libs.amazon.awssdk.v2.sqs)
}

// TODO: required for now. Remove once first release of Localstack support is available
micronautBuild {
binaryCompatibility {
enabled = true
baselineVersion = "2.0.0-M12"
}
}

0 comments on commit 837d55f

Please sign in to comment.