Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for CLASSPATH (0.54 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Another example would be to reference a `SourceSet` to later get the source files, the compilation classpath or the outputs of the source set.
    You should instead declare these as a `FileCollection` input and reference just that.
    
    The same requirement applies to dependency management types with some nuances.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // the previous visit. It is important that this is NOT a heuristic
            // (it used to be) because if the filters are _equivalent_, we would
            // revisit all dependencies and possibly change the classpath order!
            boolean sameDependencies = dependencies(newResolutionFilter).equals(oldStates);
            if (sameDependencies) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top