Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 324 for foojay (0.1 sec)

  1. build-logic/settings.gradle.kts

     * limitations under the License.
     */
    
    pluginManagement {
        includeBuild("../build-logic-commons")
        repositories {
            gradlePluginPortal()
        }
    }
    
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
    }
    
    dependencyResolutionManagement {
        repositories {
            maven {
                name = "Develocity release candidates"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    [source,kotlin]
    ----
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
    }
    
    rootProject.name = "authoring-tutorial"
    
    include("app")
    include("lib") // Add lib to the build
    ----
    =====
    [.multi-language-sample]
    =====
    .settings.gradle
    [source, groovy]
    ----
    plugins {
        id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0'
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    [source, kotlin]
    ----
    plugins {
        // Apply the foojay-resolver plugin to allow automatic download of JDKs
        id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
    }
    
    rootProject.name = "tutorial"
    include("app")
    ----
    =====
    [.multi-language-sample]
    =====
    .settings.gradle
    [source, groovy]
    ----
    plugins {
        // Apply the foojay-resolver plugin to allow automatic download of JDKs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    One example of a toolchain resolver plugin is the https://github.com/gradle/foojay-toolchains[Foojay Toolchains Plugin], based on the https://github.com/foojayio/discoapi[foojay Disco API].
    It even has a convention variant, which automatically takes care of all the needed configuration, just by being applied:
    
    ====
    include::sample[dir="snippets/java/toolchain-foojay/kotlin/",files="settings.gradle.kts[tags=plugin-application]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. architecture/standards/0004-use-a-platform-architecture.md

    This includes software that is implemented using Java, Kotlin or some other JVM language.
    
    This platform provides specific support for Java, Groovy and Scala, and includes the foojay toolchain plugin. 
    
    #### Extensibility platform
    
    This is a platform that builds on the core, software and JVM platforms to add support for extending Gradle by implementing and applying plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. architecture/platforms.md

    This includes software that is implemented using Java, Kotlin or some other JVM language.
    
    This platform provides specific support for Java, Groovy and Scala, and includes the foojay toolchain plugin.
    
    ### Extensibility platform
    
    This is a platform that builds on the core, software and JVM platforms to add support for extending Gradle by implementing and applying plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. settings.gradle.kts

        id("com.gradle.develocity").version("3.17.4") // Sync with `build-logic-commons/build-platform/build.gradle.kts`
        id("io.github.gradle.gradle-enterprise-conventions-plugin").version("0.10.1")
        id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0")
    //    id("net.ltgt.errorprone").version("3.1.0")
    }
    
    includeBuild("build-logic-commons")
    includeBuild("build-logic")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/ModelDslRuleInputDetectionIntegrationSpec.groovy

            then:
            failureCauseContains('''
      fooar { ... } @ build.gradle line 20, column 17
        subject:
          - fooar Object [*]
              suggestions: foobar
    
      foobah { ... } @ build.gradle line 18, column 17
        subject:
          - foobah Object [*]
              suggestions: foobar
    
      foonar { ... } @ build.gradle line 16, column 17
        subject:
          - foonar Object [*]
              suggestions: foobar
    ''')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelPathSuggestionProviderTest.groovy

            suggestionsFor("foora") == ["foob", "for"]
        }
    
        def "suggestions are ordered by distance then alphabetical"() {
            when:
            availablePaths = ["tasks.foobar", "task.afoobar", "tasks.f", "tasks.boofar", "fooba", "tasks.foo"]
    
            then:
            suggestionsFor("tasks.fooba") == ["tasks.foobar", "tasks.foo", "task.afoobar", "tasks.boofar"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

                    }
                    task fooJar(type: Jar) {
                       archiveBaseName = 'b-foo'
                    }
                    task foo2Jar(type: Jar) {
                       archiveBaseName = 'b-foo2'
                    }
                    tasks.withType(Jar) { destinationDirectory = buildDir }
                    artifacts {
                        foo fooJar
                        foo2 foo2Jar
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
Back to top