Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for spring (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-multipleRepositories/groovy/build.gradle

    // tag::multiple-repositories[]
    repositories {
        mavenCentral()
        maven {
            url "https://repo.spring.io/release"
        }
        maven {
            url "https://repository.jboss.org/maven2"
        }
    }
    // end::multiple-repositories[]
    
    configurations {
        libs
    }
    
    dependencies {
        libs 'jboss:jboss-system:4.2.2.GA'
    }
    
    tasks.register('copyLibs', Copy) {
        from configurations.libs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 427 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-multipleRepositories/kotlin/build.gradle.kts

    // tag::multiple-repositories[]
    repositories {
        mavenCentral()
        maven {
            url = uri("https://repo.spring.io/release")
        }
        maven {
            url = uri("https://repository.jboss.org/maven2")
        }
    }
    // end::multiple-repositories[]
    
    val libs by configurations.creating
    
    dependencies {
        libs("jboss:jboss-system:4.2.2.GA")
    }
    
    tasks.register<Copy>("copyLibs") {
        from(libs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 437 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

        def 'spring boot 3 plugin usage with jvm < 17 uses custom error message'() {
            given:
            Integer currentJava = Integer.valueOf(JavaVersion.current().majorVersion)
    
            buildFile << """
                plugins {
                    id "application"
                    id "org.springframework.boot" version "3.2.1"           // Any version of Spring Boot >= 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/templates/root-project/build.gradle

    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
            classpath "com.gradle:build-scan-plugin:${buildScanPluginVersion}"
    <% }%>
    <% if(binding.hasVariable("springDmPluginVersion")) { %>
            classpath "io.spring.gradle:dependency-management-plugin:$springDmPluginVersion"
    <% }%>
        }
    }
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
    apply plugin: 'com.gradle.build-scan'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 965 bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/NohttpPluginSmokeTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    class NohttpPluginSmokeTest extends AbstractPluginValidatingSmokeTest {
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'io.spring.nohttp': TestedVersions.nohttp,
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 868 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-spring-boot/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)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/settings.gradle.kts

            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)
Back to top