Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for sourcesPath (0.26 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

            });
            sourcesPath.setCanBeConsumed(false);
            sourcesPath.setCanBeResolved(true);
            sourcesPath.setVisible(false);
            sourcesPath.extendsFrom(runtimeClasspath);
    
            extension.getClasspath().from(runtimeClasspath);
            extension.getSourceRoots().from(sourcesPath.getIncoming().artifactView(v -> v.lenient(true)).getFiles());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 20:04:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/report-aggregation/src/main/groovy/com.example.report-aggregation.gradle

            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements, LibraryElements.CLASSES))
        }
    }
    
    // A resolvable configuration to collect source code
    def sourcesPath = configurations.create('sourcesPath') {
        visible = false
        canBeConsumed = false
        extendsFrom(aggregate)
        attributes {
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.VERIFICATION))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/report-aggregation/src/main/kotlin/com.example.report-aggregation.gradle.kts

            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.CLASSES))
        }
    }
    
    // A resolvable configuration to collect source code
    val sourcesPath by configurations.creating {
        isVisible = false
        isCanBeConsumed = false
        extendsFrom(aggregate)
        attributes {
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.VERIFICATION))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/GradleDistributionSpecs.kt

         */
        fun Project.allDistributionSpec() = copySpec {
            val sourcesPath by configurations.getting
            val docsPath by configurations.getting
    
            with(binDistributionSpec())
            from(sourcesPath.incoming.artifactView { lenient(true) }.files) {
                eachFile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:35:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild.shaded-jar.gradle.kts

        }
        javaComponent.withVariantsFromConfiguration(configurations["apiElements"]) {
            skip()
        }
    }
    
    fun configureShadedSourcesJarVariant() {
        val implementation by configurations
        val sourcesPath by configurations.creating {
            isCanBeResolved = true
            isCanBeConsumed = false
            extendsFrom(implementation)
            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    gradleScriptPath.description = "Resolves to the Gradle start scripts (bin/*) - automatically adds dependency to the :launcher project"
    val sourcesPath by sourcesResolver(listOf(coreRuntimeOnly, pluginsRuntimeOnly))
    sourcesPath.description = "Resolves the source code of all Gradle modules Jars (required for the All distribution)"
    val docsPath by docsResolver(":docs")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/reflect/GradleStandardJavaFileManager.java

                // There is currently a requirement in the JDK9 javac implementation
                // that when javac is invoked with an explicitly empty sourcepath
                // (i.e. {@code --sourcepath ""}), it won't allow you to compile a java 9
                // module. However, we really want to explicitly set an empty sourcepath
                // so that we don't implicitly pull in unrequested sourcefiles which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	notSaved := map[string]string{
    		// Not saved in settings, but present in URLs.
    		"SampleIndex": "sample_index",
    
    		// Following fields are also not placed in URLs.
    		"Output":     "output",
    		"SourcePath": "source_path",
    		"TrimPath":   "trim_path",
    		"DivideBy":   "divide_by",
    	}
    
    	// choices holds the list of allowed values for config fields that can
    	// take on one of a bounded set of values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/WbResource.java

        }
    
        public String getDeployPath() {
            return deployPath;
        }
    
        public void setDeployPath(String deployPath) {
            this.deployPath = deployPath;
        }
    
        public String getSourcePath() {
            return sourcePath;
        }
    
        public void setSourcePath(String sourcePath) {
            this.sourcePath = sourcePath;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

                }
            }
    
            val sourcePath = sourcePathFor(
                classPath = ClassPath.EMPTY,
                scriptFile = root.resolve("init.gradle.kts"),
                projectDir = folder("project"),
                gradleHomeDir = folder("gradle"),
                sourceDistributionResolver = mock()
            ).asFiles
    
            assertThat(
                sourcePath,
                hasItems(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top