Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 336 for CLASSPATH (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaRuntime.java

         *
         * @param classpath the class path to search
         * @param appendix the appendix to search for
         * @return a Scala Jar file with the specified appendix
         */
        @Nullable
        public File findScalaJar(Iterable<File> classpath, String appendix) {
            return ScalaRuntimeHelper.findScalaJar(classpath, appendix);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                    doLast {
                        assert test.testFramework instanceof ${JUnitPlatformTestFramework.canonicalName}
                        assert classpath.size() == 8
                        assert classpath.any { it.name =~ /junit-platform-launcher-.*.jar/ }
                        assert classpath.any { it.name == "junit-jupiter-${JUnitJupiterTestToolchain.DEFAULT_VERSION}.jar" }
                    }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectAccessorsClassPathTest.kt

            target: Project,
            script: String,
            classPath: ClassPath = testRuntimeClassPath,
            buildAccessorsFor: (TypedProjectSchema, ClassPath, File, File) -> Unit = ::buildAccessorsFor
        ) {
    
            val srcDir = newFolder("src")
            val binDir = newFolder("bin")
    
            buildAccessorsFor(schema, classPath, srcDir, binDir)
    
            eval(
                script = script,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

        }
    
        /**
         * Returns the classpath used to locate classes referenced by the documented sources.
         *
         * @return The classpath used to locate classes referenced by the documented sources
         */
        @Classpath
        public FileCollection getClasspath() {
            return classpath;
        }
    
        /**
         * Sets the classpath used to locate classes referenced by the documented sources.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top