Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for javaProject (0.16 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

            then:
            javaProject.mainClassFile.assertIsFile()
            javaProject.redundantClassFile.assertIsFile()
            javaProject.assertJarHasDescendants(javaProject.mainClassFile.name, javaProject.redundantClassFile.name)
    
            when:
            forceDelete(javaProject.redundantSourceFile)
            succeeds JAR_TASK_NAME
    
            then:
            javaProject.mainClassFile.assertIsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsJavaPluginIntegrationTest.groovy

            given:
            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
            """
            javaProject(file("a"))
            javaProject(file("b"), """
                dependencies {
                    implementation(project(':a'))
                }
            """)
    
            when:
            executer.withArguments(ENABLE_CLI)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r29/ToolingApiEclipseModelCrossVersionSpec.groovy

            EclipseProject javaProject = rootProject.children.find{ it.name == 'java-project' }
            EclipseProject groovyProject = rootProject.children.find{ it.name == 'groovy-project' }
            EclipseProject scalaProject = rootProject.children.find{ it.name == 'scala-project' }
    
            then:
            rootProject.projectNatures.collect{ it.id } == []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

        private static final String JAVA_TEST_FILE_PATH = 'src/test/java/MyTest.java'
    
        abstract ConsoleOutput getConsoleType()
    
        def setup() {
            buildFile << javaProject()
        }
    
        def "can group failed test log event with task by default"() {
            given:
            file(JAVA_TEST_FILE_PATH) << javaTestClass {
                'throw new RuntimeException("expected");'
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

            because("so that all Gradle features are available")
        }
    }
    
    performanceTest.registerTestProject<gradlebuild.performance.generator.tasks.JvmProjectGeneratorTask>("javaProject") {
        dependencyGraph.run {
            size = 200
            depth = 5
            useSnapshotVersions = false // snapshots should not have a build scan specific performance impact
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    .Configuring repository URL based on project version
    ====
    include::sample[dir="snippets/maven-publish/javaProject/kotlin",files="build.gradle.kts[tags=repo-url-from-variable]"]
    include::sample[dir="snippets/maven-publish/javaProject/groovy",files="build.gradle[tags=repo-url-from-variable]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

        VerboseVfsLogAccessor vfsLogs
    
        def setup() {
            buildTestFixture.withBuildInSubDir()
            def subprojects = (1..NUMBER_OF_SUBPROJECTS).collect { "project$it" }
            def rootProject = multiProjectBuild("javaProject", subprojects) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java-library'
    
                        tasks.withType(JavaCompile).configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                task.dependsOn(extension.getUserManual().getStagedDocumentation());
    
                task.sources(patternSet -> {
                    patternSet.include("**/*.adoc");
                    patternSet.exclude("javaProject*Layout.adoc");
                    patternSet.exclude("userguide_single.adoc");
                    patternSet.exclude("snippets/**/*.adoc");
                });
    
                // TODO: This breaks the provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top