Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for getClasspathForClass (0.19 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultIsolatedAntBuilderTest.groovy

        }
    
        @Test
        void bridgesLogging() {
            def classpath = ClasspathUtil.getClasspathForClass(TestAntTask)
    
            builder.withClasspath([classpath]).execute {
                taskdef(name: 'loggingTask', classname: TestAntTask.name)
                loggingTask()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 22 10:43:11 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClasspathInferer.java

            try {
                if (resource == null) {
                    LOGGER.warn("Could not determine classpath for {}", target);
                    return;
                }
    
                File classPathRoot = ClasspathUtil.getClasspathForClass(target);
                dest.add(classPathRoot.toURI());
    
                // To determine the dependencies of the class, load up the byte code and look for CONSTANT_Class entries in the constant pool
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top