Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for springframework (0.52 sec)

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

    // TODO:Finalize Upload Removal - Issue #21439
    // tag::lazy[]
    // tag::accessors[]
    plugins {
        id 'java'
        id 'org.springframework.boot' version '2.7.8'
    }
    
    // end::lazy[]
    // end::accessors[]
    
    // tag::accessors[]
    tasks.bootJar {
        archiveFileName = 'app.jar'
        mainClass = 'com.example.demo.Demo'
    }
    
    tasks.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)
  2. platforms/documentation/docs/src/samples/templates/spring-boot-web-application/src/test/java/org/gradle/samples/SpringBootDemoApplicationTests.java

    package org.gradle.samples;
    
    import org.junit.jupiter.api.Test;
    import org.springframework.boot.test.context.SpringBootTest;
    
    @SpringBootTest
    class SpringBootDemoApplicationTests {
    
    	@Test
    	void contextLoads() {
    	}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 218 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/mavenMigration/importBom/kotlin/build.gradle.kts

    // tag::plugins[]
    plugins {
        java
    }
    // end::plugins[]
    
    repositories {
        mavenCentral()
    }
    
    // tag::bom[]
    dependencies {
        implementation(platform("org.springframework.boot:spring-boot-dependencies:1.5.8.RELEASE"))  // <1>
    
        implementation("com.google.code.gson:gson")  // <2>
        implementation("dom4j:dom4j")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 335 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/platforms/product-platform/build.gradle.kts

    }
    
    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)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    The link:https://plugins.gradle.org/plugin/org.springframework.boot[Spring Boot Gradle plugin] packages executable JAR or WAR archives, and runs link:https://spring.io/[Spring Boot] Java applications.
    
    To apply the `org.springframework.boot` plugin to a project:
    
    .build.gradle.kts
    [source,kotlin]
    ----
    plugins {
        id("org.springframework.boot") version "3.1.5"
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-enforcedConstraintsFromBOM/groovy/build.gradle

    repositories {
        mavenCentral()
    }
    
    // tag::dependency-on-bom[]
    dependencies {
        // import a BOM. The versions used in this file will override any other version found in the graph
        implementation enforcedPlatform('org.springframework.boot:spring-boot-dependencies:1.5.8.RELEASE')
    
        // define dependencies without versions
        implementation 'com.google.code.gson:gson'
        implementation 'dom4j:dom4j'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 783 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/artifacts/externalDependencies/kotlin/build.gradle.kts

        doLast {
            implementation.forEach { file: File -> println(file.name) }
        }
    }
    // end::use-configuration[]
    
    // tag::module-dependencies[]
    dependencies {
        runtimeOnly(group = "org.springframework", name = "spring-core", version = "2.5")
        runtimeOnly("org.springframework:spring-aop:2.5")
        runtimeOnly("org.hibernate:hibernate:3.0.5") {
            isTransitive = true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-plugin-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'
        }
    }
    <% } %>
    
    if(Boolean.getBoolean("slowTasks")) {
        allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                    byPublishedPlatform('org.springframework', 'spring-platform', '1.0')
                }
                module('xml') {
                    group('org.apache.groovy') tries('2.4') alignsTo('2.5')
                    byPublishedPlatform('org.apache.groovy', 'platform')
                    byPublishedPlatform('org.springframework', 'spring-platform', '1.0')
                }
                module('json') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K 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