Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for spring (0.45 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/spring-boot-application/src/main/groovy/com.example.spring-boot-application.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 243 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/spring-boot-application/src/main/kotlin/com.example.spring-boot-application.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 243 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

            def pwnedDep = mavenRepo.module('org.spring/../../../../../', 'core')
            // Our abused coordinates that will see a POM request
            def abusedCoordinates = mavenHttpRepo.module('org.spring', 'core', '1.0').publish()
            // Defeat the Gradle validation that will verify metadata content match requested coordinates
            abusedCoordinates.pom.file.replace('<groupId>org.spring</groupId>', '<groupId>org.spring/../../../../../</groupId>')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesDeclaringDependenciesIntegrationTest.groovy

            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            succeeds(COPY_LIBS_TASK_NAME)
    
            then:
            dslDir.file('build/libs/spring-web-5.0.2.RELEASE.jar').isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("dependencyManagement/declaringDependencies-withoutVersion")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/spring-boot-web-application/HELP.md

    # Getting Started
    
    ### Reference Documentation
    For further reference, please consider the following sections:
    
    * [Official Gradle documentation](https://docs.gradle.org)
    * [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.2.1.RELEASE/gradle-plugin/reference/html/)
    
    ### Additional Links
    These additional references should also help you:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 469 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/spring-boot-web-application/README.adoc

    This sample shows how a Spring Boot Web application can be built with Gradle.
    The application was generated using the https://start.spring.io/#!type=gradle-project[Spring Initializr].
    
    ====
    include::sample[dir="kotlin",files="app/build.gradle.kts[]"]
    include::sample[dir="groovy",files="app/build.gradle[]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/dependencyInjectionMap.dfprop

        #                                                                               Spring
        #                                                                               ======
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o dbfluteBeansFileName: (NotRequired - Default 'dbfluteBeans.xml')
        #  The file name of DBFlute DI configuration for Spring and Lucy.
        #
        # @SpringOnly
        #; dbfluteBeansFileName = dbfluteBeans.xml
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 6.5K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SpringDependencyManagementPluginSmokeTest.groovy

        @Issue('https://plugins.gradle.org/plugin/io.spring.dependency-management')
        def 'spring dependency management plugin'() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                    id 'io.spring.dependency-management' version '${TestedVersions.springDependencyManagement}' // TODO:Finalize Upload Removal - Issue #21439
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/java-library-with-excludes.module

                        "version": {
                            "prefers": "3.2.2"
                        }
                    },
                    {
                        "group": "org.springframework",
                        "module": "spring-core",
                        "version": {
                            "prefers": "2.5.6"
                        },
                        "excludes": [
                            {
                                "group": "commons-logging",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-spring-boot/groovy/build.gradle

    }
    
    tasks.bootRun {
        mainClass = 'com.example.demo.Demo'
        args '--spring.profiles.active=demo'
    }
    // end::accessors[]
    
    // tag::lazy[]
    tasks.named('bootJar') {
        archiveFileName = 'app.jar'
        mainClass = 'com.example.demo.Demo'
    }
    
    tasks.named('bootRun') {
        mainClass = 'com.example.demo.Demo'
        args '--spring.profiles.active=demo'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 664 bytes
    - Viewed (0)
Back to top