Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for spring (0.23 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/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)
  8. 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)
  9. 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)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/platforms/product-platform/build.gradle

    plugins {
        id('java-platform')
    }
    
    group = 'com.example.platform'
    
    // allow the definition of dependencies to other platforms like the Spring Boot BOM
    javaPlatform.allowDependencies()
    
    dependencies {
        api(platform('org.springframework.boot:spring-boot-dependencies:2.7.8'))
    
        constraints {
            api('org.apache.juneau:juneau-marshall:8.2.0')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 361 bytes
    - Viewed (0)
Back to top