Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 357 for CLASSPATH (0.39 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

        /**
         * Returns the classpath used to compile this source.
         *
         * @return The classpath. Never returns null.
         */
        FileCollection getCompileClasspath();
    
        /**
         * Sets the classpath used to compile this source.
         *
         * @param classpath The classpath. Should not be null.
         */
        void setCompileClasspath(FileCollection classpath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    The Eclipse classpath consists of classpath entries: source directories, jar files, project dependencies, etc.
    Each classpath entry can have a list of classpath attributes, where the attributes are string key-value pairs.
    There are two classpath attribute relevant for test sources: `test` and `without_test_code`, both of which can have `true` or `false` as values.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                    id("maven-publish")
                }
    
                group = 'group'
                version = '1.0'
    
                tasks.compileJava {
                    // Avoid resolving the classpath when caching the configuration
                    classpath = files()
                }
    
                dependencies {
                    api('org.test:non-transitive:1.0') { transitive = false }
                    api 'org.test:artifact-only:1.0@jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

                        List<String> classpath;
                        if (isJava9) {
                            classpath = Arrays.stream(System.getProperty("java.class.path").split(Pattern.quote(File.pathSeparator)))
                                .map(path -> new File(path).getName())
                                .collect(Collectors.toList());
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

        }
      }
    }
            """
    
            // Classpath
            def classpath = getClasspath()
            classpath.assertHasLibs('foo-1.0.jar', 'bar-1.0.jar', 'baz-1.0.jar')
            classpath.lib('foo-1.0.jar').assertIsDeployedTo('/WEB-INF/lib')
            classpath.lib('bar-1.0.jar').assertIsDeployedTo('/WEB-INF/lib')
            classpath.lib('baz-1.0.jar').assertIsExcludedFromDeployment()
    
            // Facets
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(because = "test relies on static state")
        def "refreshes when buildscript classpath gets new dependency"() {
            addIsCachedCheck()
            createJarWithProperties("foo.jar")
    
            when:
            run()
            buildFile << """
                buildscript { dependencies { classpath files("foo.jar") } }
            """
            run()
    
            then:
            isNotCached()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

    import org.gradle.api.GradleException;
    import org.gradle.api.UncheckedIOException;
    import org.gradle.api.internal.classpath.DefaultModuleRegistry;
    import org.gradle.api.internal.classpath.ModuleRegistry;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.concurrent.CompositeStoppable;
    import org.gradle.internal.installation.CurrentGradleInstallation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            server.start()
        }
    
        @Unroll("jars on buildscript classpath can change (loopNumber: #loopNumber)")
        def "jars on buildscript classpath can change"() {
            given:
            buildFile << '''
                buildscript {
                    repositories { flatDir { dirs 'repo' }}
                    dependencies { classpath name: 'test', version: '1.3-BUILD-SNAPSHOT' }
                }
    
                task hello {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

     * stored in the given [outputDir].
     */
    internal
    class ResidualProgramCompiler(
        private val outputDir: File,
        private val compilerOptions: KotlinCompilerOptions,
        private val classPath: ClassPath = ClassPath.EMPTY,
        private val originalSourceHash: HashCode,
        private val programKind: ProgramKind,
        private val programTarget: ProgramTarget,
        private val implicitImports: List<String> = emptyList(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

            ConfigurableFileCollection classpath = getProject().getObjects().fileCollection();
            if (JavaVersion.current().isJava9Compatible()) {
                classpath.from(resolveJaxb());
            }
            if (GradleVersion.current().compareTo(GradleVersion.version("6.0")) >= 0) {
                classpath.from(resolveGuava());
            }
            additionalJapicmpClasspath = classpath;
        }
    
        @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top