File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
java/tools/jackson/integtest/gradle
resources/tools/jackson/integtest/gradle Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 12
12
public class GradleTest
13
13
{
14
14
/**
15
- * This test calls the Gradle build in 'src/test/resources/com/fasterxml /jackson/integtest/gradle' which:
15
+ * This test calls the Gradle build in 'src/test/resources/tools /jackson/integtest/gradle' which:
16
16
* - Collects all entries from the latest Jackson BOM
17
17
* - Checks the metadata of all the entries if they point back to the BOM
18
18
* - If not, it fails which can mean one of the following:
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ val modulesWithoutGradleMetadata = listOf(
13
13
)
14
14
15
15
dependencies {
16
- // implementation(platform("com.fasterxml .jackson:jackson-bom:+"))
16
+ // implementation(platform("tools .jackson:jackson-bom:+"))
17
17
18
18
// 28-Apr-2023, tatu: Uncomment following (and comment ^^^) to test SNAPSHOT versions
19
- implementation(platform(" com.fasterxml. jackson:jackson-bom:2.19.0 -SNAPSHOT" ))
19
+ implementation(platform(" tools. jackson:jackson-bom:3.0.0-rc1 -SNAPSHOT" ))
20
20
repositories.maven(" https://oss.sonatype.org/content/repositories/snapshots" )
21
21
}
22
22
@@ -68,7 +68,7 @@ tasks.register("checkMetadata") {
68
68
val pomModule = pomAllModulesResolved[index]
69
69
70
70
val pomDependencies = pomModule.dependencies.map { it.toString() }
71
- val gmmDependencies = gmmModule.dependencies.filter { ! it.requested.displayName.startsWith(" com.fasterxml .jackson:jackson-bom:" ) }.map { it.toString() }
71
+ val gmmDependencies = gmmModule.dependencies.filter { ! it.requested.displayName.startsWith(" tools .jackson:jackson-bom:" ) }.map { it.toString() }
72
72
if (pomDependencies != gmmDependencies) {
73
73
message + = " Dependencies of ${pomModule.id} are wrong in Gradle Metadata:" +
74
74
" \n POM: ${pomDependencies.joinToString()} " +
You can’t perform that action at this time.
0 commit comments