Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for implementationClassPath (0.34 sec)

  1. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            classpath.implementationClasspath.size() == NUM_INTERNAL_JARS + NUM_EXTERNAL_JARS + 2
            classpath.implementationClasspath.findAll { it.toString().endsWith("-internal.jar") }.size() == NUM_INTERNAL_JARS
            classpath.implementationClasspath.findAll { it.toString().endsWith("-external.jar") }.size() == NUM_EXTERNAL_JARS + 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/PluginUnderTestMetadata.java

                properties.setProperty(IMPLEMENTATION_CLASSPATH_PROP_KEY, implementationClasspath());
            }
    
            File outputFile = new File(getOutputDirectory().get().getAsFile(), METADATA_FILE_NAME);
            saveProperties(properties, outputFile);
        }
    
        private String implementationClasspath() {
            StringBuilder implementationClasspath = new StringBuilder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            expect:
            def module = registry.getModule("gradle-some-module")
            module.implementationClasspath.asFiles == [classesDir, resourcesDir, staticResourcesDir]
            module.runtimeClasspath.asFiles == [externalRuntimeDep]
    
            def dep = registry.getExternalModule("dep")
            dep.implementationClasspath.asFiles == [externalRuntimeDep]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                this.applicationModulepath = applicationModulepath;
                this.implementationClasspath = implementationClasspath;
                this.implementationModulepath = implementationModulepath;
            }
    
            public boolean isEmpty() {
                return applicationClasspath.isEmpty() && applicationModulepath.isEmpty() &&
                    implementationClasspath.isEmpty() && implementationModulepath.isEmpty();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

    }
    
    configurations {
        implementationClasspath {
            extendsFrom implementation
        }
        compileOnlyClasspath {
            extendsFrom compileOnly
        }
    }
    
    dependencies {
        implementation 'org.gradle.test:implementation:1.0'
        compileOnly 'org.gradle.test:compileOnly:1.0'
    }
    
    task checkImplementation {
        def implementationClasspath = configurations.implementationClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            if (jarFile != null) {
                Set<File> implementationClasspath = new LinkedHashSet<>();
                implementationClasspath.add(jarFile);
                Properties properties = loadModuleProperties(moduleName, jarFile);
                return module(moduleName, properties, implementationClasspath);
            }
    
            String resourceName = getClasspathManifestName(moduleName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/worker/ForkedTestClasspath.java

        private final ImmutableList<File> applicationModulepath;
        private final ImmutableList<URL> implementationClasspath;
        public final ImmutableList<URL> implementationModulepath;
    
        public ForkedTestClasspath(
            ImmutableList<File> applicationClasspath,
            ImmutableList<File> applicationModulepath,
            ImmutableList<URL> implementationClasspath,
            ImmutableList<URL> implementationModulepath
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTestKitSetupIntegrationTest.groovy

            assert !pluginMetadata.text.contains("#")
            def implementationClasspath = GUtil.loadProperties(pluginMetadata).getProperty(IMPLEMENTATION_CLASSPATH_PROP_KEY)
            assert !implementationClasspath.contains("\\")
            def expectedEntries = normaliseFileAndLineSeparators(expected.collect { it.absolutePath }.join(File.pathSeparator))
            assert implementationClasspath == expectedEntries
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

                if (runAsModule || implementationModulePath == null) {
                    outstr.writeInt(implementationClassPath.size());
                    for (URL entry : implementationClassPath) {
                        outstr.writeUTF(entry.toString());
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

            this.logLevel = logLevel;
            return this;
        }
    
        @Override
        public void setImplementationClasspath(List<URL> implementationClassPath) {
            this.implementationClassPath = implementationClassPath;
        }
    
        @Override
        public void setImplementationModulePath(List<URL> implementationModulePath) {
            this.implementationModulePath = implementationModulePath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top