Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for spring (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RepoScriptBlockUtil.groovy

            String originalUrl
            String mirrorUrl
            String type
    
            private MirroredRepository(String originalUrl, String mirrorUrl, String type) {
                this.originalUrl = originalUrl
                this.mirrorUrl = mirrorUrl ?: originalUrl
                this.type = type
            }
    
            String getRepositoryDefinition(GradleDsl dsl = GROOVY) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/troubleshooting-cache-changing/groovy/build.gradle

    plugins {
        id 'java-library'
    }
    
    repositories {
        mavenCentral()
        maven {
            url 'https://repo.spring.io/snapshot/'
        }
    }
    
    dependencies {
        implementation 'org.springframework:spring-web:5.0.3.BUILD-SNAPSHOT'
    }
    
    // tag::changing-module-cache-control[]
    configurations.all {
        resolutionStrategy.cacheChangingModulesFor 4, 'hours'
    }
    // end::changing-module-cache-control[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 511 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/troubleshooting-cache-changing/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    repositories {
        mavenCentral()
        maven {
            url = uri("https://repo.spring.io/snapshot/")
        }
    }
    
    dependencies {
        implementation("org.springframework:spring-web:5.0.3.BUILD-SNAPSHOT")
    }
    
    // tag::changing-module-cache-control[]
    configurations.all {
        resolutionStrategy.cacheChangingModulesFor(4, "hours")
    }
    // end::changing-module-cache-control[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 519 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                    }
                    dependsOn('spring', 'bom', '2.0') {
                        endorseStrictVersions = true
                        attribute(Category.CATEGORY_ATTRIBUTE.name, Category.REGULAR_PLATFORM)
                    }
                }.publish()
            def depSpring2 = mavenHttpRepo.module('spring', 'core', '2.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/software_architecture.puml

    @startuml
    
    skinparam monochrome true
    skinparam component {
        BackgroundColor white
        BorderColor Black
    	ArrowColor Black
    }
    
    database "External Repository" {
      [Spring Boot\nFramework] as SpringBoot
      [Android\nFramework] as Android
    }
    
    package "Application Layer" {
      [server-application]
      [android-app]
    }
    
    package "Business Logic Layer" {
      [user-feature]
      [admin-feature]
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 886 bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinCompilerPluginsSmokeTest.groovy

    package org.gradle.smoketests
    
    class KotlinCompilerPluginsSmokeTest extends AbstractPluginValidatingSmokeTest {
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'org.jetbrains.kotlin.plugin.allopen': TestedVersions.kotlin,
                'org.jetbrains.kotlin.plugin.spring': TestedVersions.kotlin
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 968 bytes
    - Viewed (0)
  10. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/util/ProfileUtil.java

    public class ProfileUtil {
        private static final String SPRING_PROFILES_ACTIVE = "spring.profiles.active";
    
        public static void setup() {
            final List<String> list = new ArrayList<String>();
    
            final String values = System.getProperty(SPRING_PROFILES_ACTIVE);
            if (values != null) {
                for (final String value : values.split(",")) {
                    list.add(value);
                }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top