Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for spring (0.16 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                }
                withoutModuleMetadata {
                    // POM <dependencyManagement> elements are not consumed as constraints for packaging == 'jar'.
                    expectFiles 'commons-compress-1.5.jar', 'commons-logging-1.0.4.jar', 'publishTest-1.9.jar', 'spring-core-1.2.9.jar', 'xz-1.2.jar'
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AbstractAlignmentSpec.groovy

        static class ModuleAlignmentSpec {
            String group = 'org'
            String name
            List<String> seenVersions = []
            List<String> misses = []
            String alignsTo
            List<String> virtualPlatforms = []
            List<String> publishedPlatforms = []
    
            ModuleAlignmentSpec group(String group) {
                this.group = group
                this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    expectFiles 'commons-compress-1.5.jar', 'commons-logging-1.2.jar', 'publishTest-1.9.jar', 'spring-core-1.2.9.jar', 'xz-1.6.jar'
                }
                withoutModuleMetadata {
                    expectFiles 'commons-compress-1.5.jar', 'commons-logging-1.0.4.jar', 'publishTest-1.9.jar', 'spring-core-1.2.9.jar', 'xz-1.2.jar'
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

            then: // Currently fails: excluded dependency is copied as part of configuration
            file('libs').assertHasDescendants('direct-dep-1.0.jar')
        }
    
        // This emulates the behaviour of the Spring Dependency Management plugin when applying dependency excludes from a BOM
        def "can use beforeResolve hook to modify dependency excludes for configuration hierarchy"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.adoc

    * https://jenkins.io/solutions/pipeline/[Pipeline as code with Jenkins]
    * https://bmuschko.com/blog/jenkins-build-pipeline/[Modelling a Continuous Deployment pipeline for a Spring Boot application]
    
    == Summary
    
    Executing Gradle builds on CI can be set up and configured with just a handful of steps.
    The benefit of receiving fast feedback clearly speaks for itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/build.gradle

                }
            }
            buildingSpringBootWebApplications {
                sampleDirectory = samplesRoot.dir("spring-boot-web-application")
                description = "Build a simple Spring Boot application."
                category = "Spring"
                common {
                    from(templates.springBootWebApplication)
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    == Aligning versions natively with Gradle
    
    Gradle natively supports alignment of modules produced by Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

                ))
                .collect(Collectors.toList());
        }
    
        @Override
        public Set<String> getConfigurationNames() {
            return configurationFactory.getConfigurationNames();
        }
    
        @Nullable
        @Override
        public ConfigurationGraphResolveState getConfiguration(String configurationName) {
            return configurations.computeIfAbsent(configurationName, n -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         *
         * def artifactType = Attribute.of('artifactType', String)
         *
         * dependencies.registerTransform(MyTransform) {
         *     from.attribute(artifactType, "jar")
         *     to.attribute(artifactType, "java-classes-directory")
         *
         *     parameters {
         *         stringParameter.set("Some string")
         *         inputFiles.from("my-input-file")
         *     }
         * }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    ====
    
    In the example, the versions of `gson` and `dom4j` are provided by the Spring Boot BOM.
    This way, if you are developing for a platform like Spring Boot, you do not have to declare any versions yourself but can rely on the versions the platform provides.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top