Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for external (0.2 sec)

  1. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

    }
    
    /**
     * Walk the resolved graph and discover all external dependencies that are not transitive dependencies
     * of project dependencies. This optimizes module loading during runtime, as we will only load external
     * modules that are not loaded transitively by other project modules.
     *
     * We perform this filtering, since if we simply include all external dependencies, regardless of whether
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Mar 28 20:26:58 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  2. build-logic-commons/build-platform/build.gradle.kts

    import groovy.lang.GroovySystem
    import org.gradle.util.internal.VersionNumber
    
    plugins {
        `java-platform`
    }
    
    group = "gradlebuild"
    
    description = "Provides a platform that constrains versions of external dependencies used by Gradle"
    
    // Here you should declare versions which should be shared by the different modules of buildSrc itself
    val javaParserVersion = "3.18.0"
    val groovyVersion = GroovySystem.getVersion()
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  3. architecture-standards/0002-avoid-using-java-serialization.md

    For internal purposes, we use binary formats for their brevity.
    We use the `Serializer` abstraction to separate the actual implementation of serialization from its uses.
    
    When sharing data with external tools, we use JSON.
    
    ## Status
    
    PROPOSED
    
    ## Consequences
    
    Plain Text
    - Registered: Wed Feb 14 11:36:15 GMT 2024
    - Last Modified: Thu Feb 08 21:48:27 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  4. .idea/scopes/Gradle_public_API.xml

        <scope name="Gradle public API"
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Sep 29 12:25:53 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

    import org.gradle.api.tasks.PathSensitivity;
    import org.gradle.api.tasks.TaskContainer;
    import org.gradle.api.tasks.TaskProvider;
    import org.gradle.api.tasks.javadoc.Javadoc;
    import org.gradle.external.javadoc.StandardJavadocDocletOptions;
    import gradlebuild.basics.BuildEnvironment;
    
    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * Generates Javadocs in a particular way.
     *
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Oct 16 13:03:20 GMT 2023
    - 6.9K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioSystemProperties.kt

    }
    
    
    class AndroidStudioSystemProperties(
        @get:Internal
        val studioInstallation: AndroidStudioInstallation,
        @get:Internal
        val autoDownloadAndroidStudio: Boolean,
        @get:Internal
        val runAndroidStudioInHeadlessMode: Boolean,
        @get:Internal
        val androidStudioHome: Provider<String>,
        @get:Internal
        val androidStudioJvmArgs: List<String>,
        providers: ProviderFactory
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Feb 20 09:51:32 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  7. .github/workflows/submit-github-dependency-graph.yml

          env:
            # Exclude some projects and configurations that should not contribute to the dependency graph
            DEPENDENCY_GRAPH_EXCLUDE_PROJECTS: ':docs|:internal-performance-testing|:enterprise-plugin-performance|:performance|:internal-integ-testing'
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 09:18:51 GMT 2024
    - 1.1K bytes
    - Viewed (2)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.repositories.gradle.kts

                includeModule("flot", "flot")
                includeModule("org.gradle", "gradle-tooling-api")
                includeModule("org.gradle.buildtool.internal", "configuration-cache-report")
                includeModule("org.gradle.buildtool.internal", "gradle-ide-starter")
            }
        }
        google {
            content {
                includeGroup("com.android.databinding")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 05 14:05:00 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  9. .cm/summary_table.cm

          - '/build.gradle*'
          - '/settings.gradle*'
          - 'gradle/shared-with-buildSrc/'
          - 'subprojects/internal-architecture-testing/'
          - 'subprojects/internal-build-reports/'
          - 'subprojects/internal-integ-testing/'
          - 'subprojects/internal-performance-testing/'
          - 'subprojects/internal-testing/'
      - core_configuration:
        name: 'core_configuration'
        subprojects:
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Feb 08 15:20:44 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  10. .teamcity/subprojects.json

      {
        "name": "internal-integ-testing",
        "path": "testing/internal-integ-testing",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "internal-performance-testing",
        "path": "testing/internal-performance-testing",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "internal-testing",
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:57 GMT 2024
    - 26.8K bytes
    - Viewed (0)
Back to top