Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for springframework (0.19 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

            then:
            failure.assertHasErrorOutput("""> Could not resolve all artifacts for configuration ':classpath'.
       > Could not resolve org.springframework.boot:spring-boot-gradle-plugin:3.2.1.
         Required by:
             project : > org.springframework.boot:org.springframework.boot.gradle.plugin:3.2.1
          > Dependency requires at least JVM runtime version 17. This build uses a Java $currentJava JVM.""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top