Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for spring (0.84 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-spring-boot/groovy/settings.gradle

    rootProject.name = 'configuring-tasks-spring-boot'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 51 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/spring-boot-web-application/groovy/settings.gradle

    rootProject.name = 'spring-boot-demo'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 53 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-spring-boot/kotlin/settings.gradle.kts

    rootProject.name = "configuring-tasks-spring-boot"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 51 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/spring-boot-web-application/kotlin/settings.gradle.kts

    rootProject.name = "spring-boot-demo"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 54 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/applying-plugins-declarative/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/settings.gradle

            google()
        }
    }
    includeBuild('../platforms')
    
    rootProject.name = 'build-logic'
    include('commons')
    include('java-library')
    include('kotlin-library')
    include('android-application')
    include('spring-boot-application')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 334 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                    }
                }
    
                // a library belonging to Spring platform. This test intentionally doesn't say that this
                // library also belongs to the Spring platform, because we want to check that _because_ groovy
                // belongs to it too, we will automatically upgrade spring core to 1.1
                group('org.springframework') {
                    module('core') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/applying-plugins-imperative/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-changingVersion/kotlin/build.gradle.kts

    // tag::dependencies[]
    plugins {
        `java-library`
    }
    
    repositories {
        mavenCentral()
        maven {
            url = uri("https://repo.spring.io/snapshot/")
        }
    }
    
    dependencies {
        implementation("org.springframework:spring-web:5.0.3.BUILD-SNAPSHOT")
    }
    // end::dependencies[]
    
    tasks.register<Copy>("copyLibs") {
        from(configurations.compileClasspath)
        into(layout.buildDirectory.dir("libs"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 402 bytes
    - Viewed (0)
  10. testing/performance/src/templates/project-with-source/build.gradle

        }
    <% } %>
    
    <% if (binding.hasVariable("springDmPluginVersion")) {%>
    apply plugin: "io.spring.dependency-management"
    dependencyManagement {
        imports {
            mavenBom 'org.springframework.boot:spring-boot-dependencies:1.3.5.RELEASE'
            mavenBom 'io.spring.platform:platform-bom:2.0.5.RELEASE'
        }
    }
    <% } %>
    
    dependencies {
        implementation 'commons-lang:commons-lang:2.5'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top