Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JacksonBomAlignmentRule (0.22 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/kotlin/build.gradle.kts

        // and a dependency on vert.x
        implementation("io.vertx:vertx-core:3.5.3")
    }
    // end::dependencies[]
    
    if (project.hasProperty("useBom")) {
    // tag::use_bom_rule[]
    dependencies {
        components.all<JacksonBomAlignmentRule>()
    }
    // end::use_bom_rule[]
    } else {
    // tag::use_rule[]
    dependencies {
        components.all<JacksonAlignmentRule>()
    }
    // end::use_rule[]
    // tag::enforced_platform[]
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/groovy/build.gradle

        // and a dependency on vert.x
        implementation 'io.vertx:vertx-core:3.5.3'
    }
    // end::dependencies[]
    
    if (project.hasProperty("useBom")) {
    // tag::use_bom_rule[]
    dependencies {
        components.all(JacksonBomAlignmentRule)
    }
    // end::use_bom_rule[]
    } else {
    // tag::use_rule[]
    dependencies {
        components.all(JacksonAlignmentRule)
    }
    // end::use_rule[]
    // tag::enforced_platform[]
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top