Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for databind (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                path "databind:2.6.7.1 -> core:2.6.7"
                path "databind:2.8.0 -> annotations:2.8.0"
                path "databind:2.8.0 -> annotations:2.8.0"
                path "databind:2.8.0 -> core:2.8.0"
                path "databind:2.8.0 -> core:2.8.0"
                path "databind:2.8.10 -> annotations:2.8.0"
                path "databind:2.8.10 -> annotations:2.8.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                path "databind:2.8.10 -> core:2.8.10"
                path "databind:2.8.11 -> annotations:2.8.0"
                path "databind:2.8.11 -> annotations:2.8.0"
                path "databind:2.8.11 -> annotations:2.8.0"
                path "databind:2.8.11 -> core:2.8.10"
                path "databind:2.8.11 -> core:2.8.10"
                path "databind:2.8.11 -> core:2.8.10"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/groovy/build.gradle

    plugins {
        id 'java-library'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::dependencies[]
    dependencies {
        // a dependency on Jackson Databind
        implementation 'com.fasterxml.jackson.core:jackson-databind:2.8.9'
    
        // 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 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

        def "can align thanks to a published platform"() {
            repository {
                path 'databind:2.7.9 -> core:2.7.9'
                path 'databind:2.7.9 -> annotations:2.7.9'
                path 'databind:2.9.4 -> core:2.9.4'
                path 'databind:2.9.4 -> annotations:2.9.0' // intentional!
                path 'kt:2.9.4.1 -> databind:2.9.4'
                'org:annotations:2.9.0'()
                'org:annotations:2.9.4'()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::dependencies[]
    dependencies {
        // a dependency on Jackson Databind
        implementation("com.fasterxml.jackson.core:jackson-databind:2.8.9")
    
        // 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 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ProjectInternalViewDependencyIntegrationTest.groovy

                plugins {
                    id 'application'
                }
    
                dependencies {
                    runtimeOnly "com.h2database:h2:2.1.214"
                    implementation "com.fasterxml.jackson.core:jackson-databind:2.13.3"
                    compileOnly "org.apache.commons:commons-lang3:3.12.0"
                }
            """
            writeBaseBuildFile()
            writeNonApiAccessibilityTest()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildExternalPluginsValidationSmokeTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import com.fasterxml.jackson.databind.JsonNode
    import com.fasterxml.jackson.databind.ObjectMapper
    import com.fasterxml.jackson.databind.node.ArrayNode
    import org.gradle.internal.reflect.validation.ValidationMessageChecker
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.precondition.Requires
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/tests/dependenciesWithBOM.out

    Root project 'dependency-alignment'
    ------------------------------------------------------------
    
    compileClasspath - Compile classpath for source set 'main'.
    +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 -> 2.9.5
    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.9.0
    |    |    \--- com.fasterxml.jackson:jackson-bom:2.9.0 -> 2.9.5
    |    |         +--- com.fasterxml.jackson:jackson-bom:2.9.5 (*)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies-project/groovy/build.gradle

    repositories {
        mavenCentral()
    }
    
    // tag::configure-suite-dependencies-project[]
    dependencies {
        api 'com.google.guava:guava:30.1.1-jre' // <1>
        implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3' // <2>
    }
    
    testing {
        suites {
            integrationTest(JvmTestSuite) {
                dependencies {
                    implementation project() // <3>
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies-project/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    
    // tag::configure-suite-dependencies-project[]
    dependencies {
        api("com.google.guava:guava:30.1.1-jre") // <1>
        implementation("com.fasterxml.jackson.core:jackson-databind:2.13.3") // <2>
    }
    
    testing {
        suites {
            val integrationTest by registering(JvmTestSuite::class) {
                dependencies {
                    implementation(project()) // <3>
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top