Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 125 for projectFor (0.15 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                        System.out.println("action = " + action);
                        System.out.println("projectDir = " + projectDir);
                        System.out.println("gradleVersion = " + gradleVersion);
                        System.out.println("javaHome = " + javaHome);
                        System.out.println("gradleUserHome = " + gradleUserHome);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

            """
    
            when:
            projectDir(producer)
            withInstallations(currentJdk, otherJdk)
            executer.withJavaHome(higherVersion.javaHome)
            succeeds 'publish'
    
            then:
            pluginModule.assertPublished()
            pluginMarker.assertPublished()
            pluginModule.artifact([:]).assertPublished()
    
            when:
            projectDir(consumer)
            withInstallations(currentJdk, otherJdk)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

                    public static boolean isTrue() { return true; }
                }
            """
    
            createTest(projectDir, "MyTest")
            projectDir
        }
    
        void createTest(TestFile projectDir, String testName) {
            projectDir.file("src/test/java/${testName}.java") << """
                import org.junit.*;
    
                public class ${testName} {
                   @Test
                   public void test() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

                    @TempDir
                    private File projectDir
    
                    private getBuildFile() {
                        new File(projectDir, "build.gradle")
                    }
    
                    private getSettingsFile() {
                        new File(projectDir, "settings.gradle")
                    }
    
                    def "native services are enabled"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            rootProject.projectIdentifier.buildIdentifier.rootDir == projectDir
            rootProject.mainComponent == null
            rootProject.testComponent == null
    
            def appProject = models[1]
            appProject.projectIdentifier.projectPath == ':app'
            appProject.projectIdentifier.buildIdentifier.rootDir == projectDir
            appProject.mainComponent instanceof CppApplication
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            }
        }
    
        TestFile file(Object... path) {
            projectDir.file(path)
        }
    
        BuildTestFile populate(String projectName, @DelegatesTo(BuildTestFile) Closure cl) {
            new BuildTestFixture(projectDir).withBuildInSubDir().populate(projectName, cl)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

            'FileCollection'             | 'URI'            | 'project.layout.files(new File(projectDir, "/src/resource/file.txt").toURI())'
            'FileCollection'             | 'URL'            | 'project.layout.files(new File(projectDir, "/src/resource/file.txt").toURI().toURL())'
            'FileCollection'             | 'Directory'      | 'project.layout.files(project.layout.projectDirectory)'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

                'connectedDebugAndroidTest',
                "-Pandroid.injected.invoked.from.ide=$ide"
            )
    
            when: 'first build'
            SantaTrackerConfigurationCacheWorkaround.beforeBuild(runner.projectDir, IntegrationTestBuildContext.INSTANCE.gradleUserHomeDir)
            def result = runner.build()
    
            then:
            result.task(':app:compileDebugJavaWithJavac').outcome == TaskOutcome.SUCCESS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaAnnotationProcessingIntegrationTest.groovy

            when:
            AnnotationProcessorPublisher annotationProcessorPublisher = new AnnotationProcessorPublisher()
            annotationProcessorPublisher.writeSourceFiles()
            inDirectory(annotationProcessorPublisher.projectDir).withTasks('publish').run()
    
            then:
            annotationProcessorPublisher.publishedJarFile.isFile()
            annotationProcessorPublisher.publishedPomFile.isFile()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top