Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for springframework (0.32 sec)

  1. android/guava/javadoc-link/checker-framework/package-list

    org.checkerframework.javacutil.dist
    org.checkerframework.javacutil.trees
    org.eclipse.jdt.annotation
    org.eclipse.jgit.annotations
    org.jetbrains.annotations
    org.jmlspecs.annotation
    org.netbeans.api.annotations.common
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ProjectInternalViewDependencyIntegrationTest.groovy

                    @org.junit.Test
                    public void verifyApiConfigurationsAreAccessible() throws Exception {
                        // `api` dependencies are accessible
                        assert new org.springframework.core.io.ByteArrayResource("Hello, Test!".getBytes()).contentLength() == 12;
    
                        // `compileOnlyApi` dependencies are accessible at compile-time
                        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. guava/javadoc-link/checker-framework/package-list

    org.checkerframework.javacutil.dist
    org.checkerframework.javacutil.trees
    org.eclipse.jdt.annotation
    org.eclipse.jgit.annotations
    org.jetbrains.annotations
    org.jmlspecs.annotation
    org.netbeans.api.annotations.common
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/JavaTestProjectGenerator.groovy

            .withSubProjects(10)
            .withDaemonMemory('2g')
            .withCompilerMemory('512m')
            .assembleChangeFile()
            .withExternalApiDependencies([
                "spring": "org.springframework.boot:spring-boot:2.7.9",
                "aws": "com.amazonaws:aws-java-sdk-bundle:1.12.680",
                "jooq": "org.jooq:jooq:3.19.6",
                "grpc": "io.grpc:grpc-netty:1.62.2",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            """
            file("transitive/build.gradle") << """
                dependencies {
                    implementation 'org.apache.commons:commons-io:1.3.2'
                    implementation(platform('org.springframework.boot:spring-boot-dependencies:2.5.8'))
                    runtimeOnly 'org.codehaus.janino:janino'
                }
            """
    
            when:
            succeeds(":application:testCodeCoverageReport")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    * `org.apache.commons:*`: will let all modules belonging to group `org.apache.commons` update
    * `*:guava`: will let all modules named `guava`, whatever their group, update
    * `org.springframework.spring*:spring*`: will let all modules having their group starting with `org.springframework.spring` and name starting with `spring` update
    
    NOTE: The resolution may cause other module versions to update, as dictated by the Gradle resolution rules.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            static docker = "9.4.0"
    
            // https://plugins.gradle.org/plugin/io.spring.dependency-management
            static springDependencyManagement = "1.1.4"
    
            // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-gradle-plugin
            static springBoot = "3.2.4"
    
            // https://developer.android.com/studio/releases/build-tools
            static androidTools = "34.0.0"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    [source,text]
    ----
    ❯ ./gradlew help --task bootJar
    ...
    Type
         BootJar (org.springframework.boot.gradle.tasks.bundling.BootJar)
    ----
    
    [source,text]
    ----
    ❯ ./gradlew help --task bootRun
    ...
    Type
         BootRun (org.springframework.boot.gradle.tasks.run.BootRun)
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    The following example picks the versions of the `gson` and `dom4j` dependencies from the declared Spring Boot BOM:
    
    ----
    dependencies {
        // import a BOM
        implementation platform('org.springframework.boot:spring-boot-dependencies:1.5.8.RELEASE')
    
        // define dependencies without versions
        implementation 'com.google.code.gson:gson'
        implementation 'dom4j:dom4j'
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top