Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for sourceSets (0.13 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/build.gradle.kts

        api(project(":analysis:analysis-api"))
        api(project(":analysis:analysis-api-impl-base"))
        api(project(":analysis:analysis-api-platform-interface"))
        api(project(":analysis:project-structure"))
    }
    
    
    sourceSets {
        "main" { projectDefault() }
        "test" { none() }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 785 bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-barebone/build.gradle.kts

        testApi(projectTests(":compiler:test-infrastructure-utils"))
        testApi(projectTests(":compiler:test-infrastructure"))
        testImplementation(projectTests(":compiler:tests-common-new"))
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" { projectDefault() }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 763 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/sampleJavaProject/kotlin/build.gradle.kts

    tasks.register<Copy>("nestedSpecs") {
        into(layout.buildDirectory.dir("explodedWar"))
        exclude("**/*staging*")
        from("src/dist") {
            include("**/*.html", "**/*.png", "**/*.jpg")
        }
        from(sourceSets.main.get().output) {
            into("WEB-INF/classes")
        }
        into("WEB-INF/lib") {
            from(configurations.runtimeClasspath)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:03:24 UTC 2024
    - 892 bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    internal
    fun Project.addSourceSet(testType: TestType): SourceSet {
        val prefix = testType.prefix
        val sourceSets = the<SourceSetContainer>()
        val main by sourceSets.getting
        return sourceSets.create("${prefix}Test") {
            compileClasspath += main.output
            runtimeClasspath += main.output
        }
    }
    
    
    internal
    fun Project.createTasks(sourceSet: SourceSet, testType: TestType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. analysis/analysis-api/build.gradle.kts

        api(project(":analysis:project-structure"))
    
        api(intellijCore())
        api(commonDependency("org.jetbrains.intellij.deps:asm-all"))
        api(libs.guava)
    }
    
    kotlin {
        explicitApi()
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" { projectDefault() }
    }
    
    tasks.withType<KotlinJvmCompile>().configureEach {
        compilerOptions.freeCompilerArgs.add("-Xcontext-receivers")
    }
    
    testsJar()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/sampleJavaProject/groovy/build.gradle

    tasks.register('nestedSpecs', Copy) {
        into layout.buildDirectory.dir("explodedWar")
        exclude '**/*staging*'
        from('src/dist') {
            include '**/*.html', '**/*.png', '**/*.jpg'
        }
        from(sourceSets.main.output) {
            into 'WEB-INF/classes'
        }
        into('WEB-INF/lib') {
            from configurations.runtimeClasspath
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:03:24 UTC 2024
    - 878 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

            buildFile << """
                sourceSets {
                    moreTests {
                        java.srcDir "src/test"
                        ${destinationDirectoryCode(classesDir)}
                        compileClasspath = compileClasspath + sourceSets.test.compileClasspath
                        runtimeClasspath = runtimeClasspath + sourceSets.test.runtimeClasspath
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/build.gradle.kts

        testImplementation(projectTests(":analysis:analysis-api-impl-base"))
        testImplementation(projectTests(":analysis:analysis-test-framework"))
    
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" {
            projectDefault()
            generatedTestDir()
        }
    }
    
    tasks.withType<KotlinJvmCompile>().configureEach {
        compilerOptions {
            optIn.addAll(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. testing/internal-testing/build.gradle.kts

    plugins {
        id("gradlebuild.internal.java")
    }
    
    description = "Collection of test fixtures for both unit tests and integration tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(project(":base-services"))
        api(project(":concurrent"))
        api(project(":hashing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/build.gradle.kts

        testRuntimeOnly(toolsJar())
        testApi(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
        testRuntimeOnly(libs.junit.jupiter.engine)
    }
    
    kotlin {
        explicitApi()
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" {
            projectDefault()
            generatedTestDir()
        }
    }
    
    projectTest(jUnitMode = JUnitMode.JUnit5) {
        dependsOn(":dist")
        workingDir = rootDir
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top