Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 325 for CompileClasspath (0.17 sec)

  1. maven-core/src/test/projects/project-builder/mng-3023/consumer/pom.xml

                <phase>validate</phase>
                <goals>
                  <goal>compile</goal>
                </goals>
                <configuration>
                  <compileClassPath>${project.build.directory}/compile.classpath</compileClassPath>
                  <significantPathLevels>1</significantPathLevels>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

                configurations.compileClasspath.each { println it }
    """
            def aBuildfile = file("a/build.gradle") << """
                dependencies {
                    implementation project(':b')
                }
                // Triggers configuration of a due to the dependency
                configurations.compileClasspath.each { println it }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-relocate/groovy/build.gradle

    abstract class ClassRelocator implements TransformAction<Parameters> {
        interface Parameters extends TransformParameters {                       // <2>
            @CompileClasspath                                                    // <3>
            ConfigurableFileCollection getExternalClasspath()
            @Input
            Property<String> getExcludedPackage()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. maven-core/src/test/projects/project-builder/it0063/pom.xml

            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-dependency-resolution</artifactId>
            <version>2.1-SNAPSHOT</version>
            <configuration>
              <compileClassPath>target/compile.txt</compileClassPath>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.SourceSet.xml

                    <td>output</td>
                    <td>See <apilink class="org.gradle.api.tasks.SourceSetOutput"/></td>
                </tr>
                <tr>
                    <td>compileClasspath</td>
                    <td><literal>project.configurations.compileClasspath</literal> (or <literal>project.configurations.testCompileClasspath</literal> for the <literal>test</literal> source set).</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. maven-compat/src/test/projects/project-dependencies-resolver/it0063/pom.xml

            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-dependency-resolution</artifactId>
            <version>2.1-SNAPSHOT</version>
            <configuration>
              <compileClassPath>target/compile.txt</compileClassPath>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishFeaturesJavaIntegTest.groovy

                        }
                        outgoing.capability("org:optional-feature:\${version}")
                    }
                    compileClasspath.extendsFrom(optionalFeatureImplementation)
                }
    
                tasks.compileJava {
                    // Avoid resolving the classpath when caching the configuration
                    classpath = files()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

        @CompileClasspath
        public abstract ConfigurableFileCollection getOldClasspath();
    
        @CompileClasspath
        public abstract ConfigurableFileCollection getNewClasspath();
    
        @Optional
        @CompileClasspath
        public abstract ConfigurableFileCollection getOldArchives();
    
        @Optional
        @CompileClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

            FileCollection inputFilesClasspath
        }
    
        class CompileClasspathPropertyTask extends DefaultTask {
            @CompileClasspath
            FileCollection classpathOnly
            @CompileClasspath
            @InputFiles
            FileCollection classpathInputFiles
            @InputFiles
            @CompileClasspath
            FileCollection inputFilesClasspath
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

        def explanationBuilder = Stub(AttributeMatchingExplanationBuilder)
    
        def setup() {
            JavaEcosystemSupport.configureSchema(schema, TestUtil.objectFactory())
        }
    
        def "resolve compileClasspath with java plugin"() {
            def requested = attributes(Usage.JAVA_API, LibraryElements.CLASSES, 8)
    
            def apiElements = [attributes(Usage.JAVA_API, LibraryElements.JAR, 8)]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top