Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for classPath (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    **Note:** The `@Classpath` annotation was introduced in Gradle 3.2. To stay compatible with earlier Gradle versions, classpath properties should also be annotated with `@InputFiles`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        /**
         * Returns a filtered list of classpath elements. This method is invoked when the caller
         * requested that all dependencies are placed on the classpath, with no module-path element.
         *
         * @param scopeFilter a filter returning {@code true} for the artifact scopes to accept.
         * @param includeTestDir whether to include the test directory in the classpath elements.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    
    Again, we're accessing a source set to get the relevant information, i.e. where the compiled test classes are — the `testClassesDirs` property — and what needs to be on the classpath when running them — `classpath`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Since Gradle 1.0, runtime-scoped dependencies have been included in the Java compilation classpath, which has some drawbacks:
    
     * The compilation classpath is much larger than it needs to be, slowing down compilation.
     * The compilation classpath includes runtime-scoped files that do not impact compilation, resulting in unnecessary re-compilation when those files change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    .build.gradle.kts
    [source,kotlin]
    ----
    tasks {
        myTask {
            inputFiles.from(configurations.classpath.incoming.artifactView {
                attributes {
                    // Add attributes to select a different type of artifact
                }
            }.files)
        }
    }
    
    configurations {
        classpath {
            attributes {
                // Add more attributes to the configuration
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            transformed()
            outputContains("result = [b.jar.green, c.jar.green]")
    
            where:
            annotation << ["Classpath", "CompileClasspath"]
        }
    
        def "honors runtime classpath normalization for input artifact for incremental transform"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            setupBuildWithColorTransform {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                ? file('consumer/my-script.gradle')
                : consumerBuildFile
            buildscriptDestination << """
                buildscript {
                    // Build script classpath is resolved via ${INSTRUMENTED_ATTRIBUTE.name} attribute,
                    // so we have to set that attribute too to make transform run
                    def artifactType = Attribute.of('artifactType', String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    eclipse {
        classpath {
            testSourceSets = [sourcesSets.test, sourceSets.myTestSourceSet]
            testConfigurations = [configuration.myTestConfiguration]
        }
    }
    ```
    
    Alternatively, you can adjust or remove classpath attributes in the `eclipse.classpath.file.whenMerged { }` block.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import org.gradle.internal.ImmutableActionSet;
    import org.gradle.internal.MutableActionSet;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.buildprocess.BuildProcessState;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.featurelifecycle.LoggingDeprecatedFeatureHandler;
    import org.gradle.internal.instrumentation.agent.AgentStatus;
    import org.gradle.internal.jvm.JavaHomeException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * script for this project, and manage the classpath used to compile and execute the project's build script.
         *
         * @return the classpath handler. Never returns null.
         */
        ScriptHandler getBuildscript();
    
        /**
         * <p>Configures the build script classpath for this project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top