Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for spring (0.19 sec)

  1. platforms/documentation/docs/src/snippets/artifacts/externalDependencies/kotlin/build.gradle.kts

            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)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

        }
    
        static class Versions implements Iterable<String> {
            static Versions of(String... versions) {
                new Versions(versions)
            }
    
            final List<String> versions
    
            private Versions(String... given) {
                versions = Arrays.asList(given)
            }
    
            @Override
            Iterator<String> iterator() {
                return versions.iterator()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/README.adoc

    There are different ways to work with the sample:
    
    - You may build or import the umbrella build in the root.
      There you can, for example, run the Spring Boot web application via `./gradlew :server-application:app:bootRun` or install the Android app using `./gradlew :android-app:app:installDebug`.
    - You may only build or import one of the application builds directly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/kts-empty/build.gradle.kts

    <% 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")
    // TODO: fix buildScan configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/dag.txt

    	quarkus/test-framework/junit5-internal/pom.xml
    	quarkus/test-framework/junit5-mockito/pom.xml
    quarkus/integration-tests/spring-web/pom.xml
    	quarkus/extensions/spring-web/core/runtime/pom.xml
    	quarkus/extensions/spring-cache/runtime/pom.xml
    	quarkus/extensions/spring-security/runtime/pom.xml
    	quarkus/extensions/spring-scheduled/runtime/pom.xml
    	quarkus/extensions/undertow/runtime/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    - runtime environment: a set of libraries known to work well together. e.g., the Spring Platform, recommending versions for both Spring and components that work well with Spring.
    - deployment environment: Java runtime, application server, ...
    
    In addition Gradle defines <<dependency_version_alignment.adoc#sec:virtual_platform,virtual platforms>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    ...
    Type
         Jar (org.gradle.api.tasks.bundling.Jar)
    ----
    --
    
    Let's bring all this together by running through a quick worked example that configures the `bootJar` and `bootRun` tasks of a Spring Boot project:
    
    .Configuring Spring Boot using type-safe accessors
    ====
    include::sample[dir="snippets/kotlinDsl/configuring-tasks-spring-boot/kotlin",files="build.gradle.kts[tags=accessors]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    * `*:guava`: will let all modules named `guava`, whatever their group, update
    * `org.springframework.spring*:spring*`: will let all modules having their group starting with `org.springframework.spring` and name starting with `spring` update
    
    NOTE: The resolution may cause other module versions to update, as dictated by the Gradle resolution rules.
    
    == Disabling dependency locking
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGeneratorTest.groovy

                    }
                }
                mailingLists {
                    mailingList {
                        name.set("Users")
                    }
                }
                properties.put("spring-boot.version", "2.1.2.RELEASE")
                properties.put("hibernate.version", "5.4.1.Final")
            }
    
            expect:
            with (xml) {
                packaging == "pom"
                name == "my name"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/dependency_management_for_java_projects.adoc

    Resolving dependencies::
    A plugin uses configurations to find (and possibly download) inputs to the tasks it defines. For example Gradle needs to download Spring web framework JAR files from Maven Central.
    Exposing artifacts for consumption::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top