Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,395 for classPath (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyCompileScriptBuildOperationIntegrationTest.groovy

                "Compile initialization script 'init.gradle' (CLASSPATH)",
                "Compile initialization script 'init.gradle' (BODY)",
                "Compile settings file 'settings.gradle' (CLASSPATH)",
                "Compile settings file 'settings.gradle' (BODY)",
                "Compile build file 'build.gradle' (CLASSPATH)",
                "Compile build file 'build.gradle' (BODY)",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

        def "creates a limited implementation classpath"() {
            when:
            def framework = newFramework(false, [], [], [], [])
            def classpath = underTest.create([new File("cls.jar")], [new File("mod.jar")], framework, false)
    
            then:
            classpath.applicationClasspath == [new File("cls.jar")]
            classpath.applicationModulepath == [new File("mod.jar")]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseDependencySubstitutionIntegrationTest.groovy

                substitute module("junit:junit:4.7") using project(":project1")
            }
        }
    }
    """)
    
            def classpath = classpath("project2")
            assert classpath.projects.collect { it.name } == ["project1"]
            assert classpath.libs == []
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void "transitive external dependency substituted with project dependency"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/tasks/GroovyRuntimeTest.groovy

            ])
    
            then:
            classpath.files.size() == 13
            classpath.files.contains(project.file("groovy-${groovyVersion}.jar"))
            classpath.files.contains(project.file("groovy-ant-${groovyVersion}.jar"))
            classpath.files.contains(project.file("groovy-astbuilder-${groovyVersion}.jar"))
            classpath.files.contains(project.file("groovy-console-${groovyVersion}.jar"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/DynamicModulesClassPathProviderTest.groovy

     */
    package org.gradle.api.internal
    
    import org.gradle.api.JavaVersion
    import org.gradle.api.internal.classpath.Module
    import org.gradle.api.internal.classpath.ModuleRegistry
    import org.gradle.api.internal.classpath.PluginModuleRegistry
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import spock.lang.Specification
    
    class DynamicModulesClassPathProviderTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 18 09:54:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InheritedMethodsInterceptionTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath
    
    import org.gradle.internal.classpath.intercept.JvmBytecodeInterceptorFactoryProvider
    import org.gradle.internal.classpath.types.ExternalPluginsInstrumentationTypeRegistry
    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry
    
    import java.util.function.Predicate
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreator.java

            Set<Configuration> testConfigurations = classpath.getTestConfigurations().getOrElse(Collections.emptySet());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpJavaEarSingleProjectIntegrationTest.groovy

            project.assertHasJavaFacetBuilders()
    
            // Classpath
            def classpath = classpath
            classpath.assertHasLibs('lib2-impl-2.0.jar', 'lib1-impl-1.0.jar', 'lib1-api-1.0.jar')
            classpath.lib('lib1-api-1.0.jar').assertIsDeployedTo('/lib')
            classpath.lib('lib1-impl-1.0.jar').assertIsDeployedTo('/lib')
            classpath.lib('lib2-impl-2.0.jar').assertIsDeployedTo('/')
    
            // Facets
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

     * limitations under the License.
     */
    package org.gradle.api.internal
    
    import org.gradle.api.internal.classpath.Module
    import org.gradle.api.internal.classpath.ModuleRegistry
    import org.gradle.api.internal.classpath.PluginModuleRegistry
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import spock.lang.Specification
    
    class DependencyClassPathProviderTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinInitScriptModelCrossVersionSpec.groovy

        def "initscript classpath does not include buildSrc"() {
    
            given:
            withBuildSrc()
            withDefaultSettings()
    
            and:
            def initScript = withFile("my.init.gradle.kts")
    
            when:
            def classPath = canonicalClassPathFor(initScript)
    
            then:
            assertContainsGradleKotlinDslJars(classPath)
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top