Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 325 for CompileClasspath (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                    implementation project(":child")
                    implementation 'org.foo:rock:1.0' //contains unresolved transitive dependency
                }
            """
            failedResolve.prepare("compileClasspath")
            createDirs("child")
            settingsFile << "include 'child'"
            def m1 = mavenHttpRepo.module('org.foo', 'hiphop').publish()
            def m2 = mavenHttpRepo.module('org.foo', 'unknown')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

     *   }
     *
     *   dependencies {
     *       implementation 'org.slf4j:slf4j-api:1.7.26'
     *   }
     *
     *   //copying all dependencies attached to 'compileClasspath' into a specific folder
     *   task copyAllDependencies(type: Copy) {
     *     //referring to the 'compileClasspath' configuration
     *     from configurations.compileClasspath
     *     into 'allLibs'
     *   }
     * </pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/testFixtures/groovy/org/gradle/testing/jacoco/plugins/fixtures/JavaProjectUnderTest.groovy

                    integrationTest {
                        java {
                            srcDir file('$testSrcDir')
                        }
                        compileClasspath += sourceSets.main.output + configurations.testRuntimeClasspath
                        runtimeClasspath += output + compileClasspath
                    }
                }
    
                task integrationTest(type: Test) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                }
    
                task validate {
                    doLast {
                        def compileClasspath = configurations.compileClasspath.resolvedConfiguration
                        assert compileClasspath.hasError()
                        println "evaluating:"
                        compileClasspath.${expression}
                    }
                }
            """
    
            m1.allowAll()
            m2.allowAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::lock-mode[]
    dependencyLocking {
        lockMode = LockMode.STRICT
    }
    // end::lock-mode[]
    
    configurations {
        compileClasspath {
            resolutionStrategy.activateDependencyLocking()
        }
    }
    
    dependencies {
        implementation 'org.springframework:spring-beans:[5.0,6.0)'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 343 bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaIntegTest.groovy

                        }
                        outgoing.capability("org:optional-feature:\${version}")
                    }
                    compileClasspath.extendsFrom(optionalFeatureImplementation)
                }
    
                ${ivyTestRepository()}
    
                dependencies {
                    optionalFeatureImplementation 'org:optionaldep:1.0'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-unlockingSingleConfiguration/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::locking-one[]
    configurations.compileClasspath {
        resolutionStrategy.deactivateDependencyLocking()
    }
    // end::locking-one[]
    
    // tag::locking-deps[]
    dependencies {
        implementation("org.springframework:spring-beans:[5.0,6.0)")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

            // We have to explicitly add compileClasspath here because it may contain classes that aren't part of the compileClasspathConfiguration. In particular, compile
            // classpath of the test sourceSet contains output of the main sourceSet.
            taskMapping.map("classpath", () -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreatorTest.groovy

            project.apply(plugin: 'java')
            childProject.apply(plugin: 'java')
    
            eclipseClasspath.setProjectDependenciesOnly(true)
            eclipseClasspath.plusConfigurations = [project.configurations.compileClasspath, project.configurations.runtimeClasspath, project.configurations.testCompileClasspath, project.configurations.testRuntimeClasspath]
    
            when:
            project.dependencies.add('implementation', childProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/CommandLineJavaCompilerArgumentsGeneratorTest.groovy

            and: "args file contains remaining arguments (one per line, quoted)"
            argsFile.readLines() == ["-g", "-sourcepath", quote(""), "-proc:none", USE_UNSHARED_COMPILER_TABLE_OPTION, "-classpath", quote("${spec.compileClasspath.join(File.pathSeparator)}"), *(spec.sourceFiles*.path.collect { quote(it) })]
        }
    
        String defaultEmptySourcePathRefFolder() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top