Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/server-application/app/build.gradle

    plugins {
        id('com.example.spring-boot-application')
    }
    
    group = "${group}.server-application"
    
    dependencies {
        implementation('com.example.myproduct.user-feature:table')
        implementation('com.example.myproduct.admin-feature:config')
    
        implementation('org.apache.juneau:juneau-marshall')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 300 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/server-application/app/build.gradle.kts

    plugins {
        id("com.example.spring-boot-application")
    }
    
    group = "${group}.server-application"
    
    dependencies {
        implementation("com.example.myproduct.user-feature:table")
        implementation("com.example.myproduct.admin-feature:config")
    
        implementation("org.apache.juneau:juneau-marshall")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 300 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    These plugins provide additional functionality that may be specific to certain use cases or technologies.
    
    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 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-changingVersion/groovy/build.gradle

    // tag::dependencies[]
    plugins {
        id 'java-library'
    }
    
    repositories {
        mavenCentral()
        maven {
            url 'https://repo.spring.io/snapshot/'
        }
    }
    
    dependencies {
        implementation 'org.springframework:spring-web:5.0.3.BUILD-SNAPSHOT'
    }
    // end::dependencies[]
    
    tasks.register('copyLibs', Copy) {
        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
    - 395 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/platforms/product-platform/build.gradle.kts

    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