Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for spring (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. licenses/github.com/shopspring/decimal/LICENSE

    The MIT License (MIT)
    
    Copyright (c) 2015 Spring, Inc.
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 22:59:30 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. src/go/printer/testdata/declarations.input

    }
    
    
    // test cases form issue 8685
    // not aligned
    var _ = map[int]string{1: "spring", 2: "summer",
    					3:             "autumn", 4: "winter"}
    
    // not aligned
    var _ = map[string]string{"a": "spring", "b": "summer",
    	"c": "autumn", "d": "winter"}
    
    // aligned
    var _ = map[string]string{"a": "spring",
    "b": "summer",
    	"c": "autumn",
    "d": "winter"}
    
    
    func _() {
    	var _ = T{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/basicInfoMap.dfprop

        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o targetContainer: (Required)
        #  The target DI container.
        #  Your possible choices are:
        #
        #       spring, guice, seasar, cdi, lasta_di
        #
        ; targetContainer = spring
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o packageBase: (Required)
        #  The base directory of package for generated class.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.2K bytes
    - Viewed (0)
  8. 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)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/JavaTestProjectGenerator.groovy

            return config
        }
    
        String getProjectName() {
            return config.projectName
        }
    
        String getDaemonMemory() {
            return config.daemonMemory
        }
    
        def getParallel() {
            return config.parallel
        }
    
        def getMaxWorkers() {
            return config.maxWorkers
        }
    
        @Override
        String toString() {
            return config.projectName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/go/printer/testdata/declarations.golden

    }
    
    // test cases form issue 8685
    // not aligned
    var _ = map[int]string{1: "spring", 2: "summer",
    	3:	"autumn", 4: "winter"}
    
    // not aligned
    var _ = map[string]string{"a": "spring", "b": "summer",
    	"c":	"autumn", "d": "winter"}
    
    // aligned
    var _ = map[string]string{"a": "spring",
    	"b":	"summer",
    	"c":	"autumn",
    	"d":	"winter"}
    
    func _() {
    	var _ = T{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
Back to top