Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for addCompilationFrom (0.06 seconds)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

        id("gradlebuild.module-identity")
        id("gradlebuild.dependency-modules")
        id("gradlebuild.jvm-compile")
    }
    
    val sourceSet = sourceSets.create("${TestType.CROSSVERSION.prefix}Test")
    jvmCompile {
        addCompilationFrom(sourceSet)
    }
    addDependenciesAndConfigurations(TestType.CROSSVERSION.prefix)
    createQuickFeedbackTasks()
    createAggregateTasks(sourceSet)
    configureIde(TestType.CROSSVERSION)
    configureTestFixturesForCrossVersionTests()
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Sep 05 02:31:24 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  2. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

            sharedArchTestClasses(project(":internal-architecture-testing"))
        }
    }
    
    testing {
        suites {
            create("archTest", JvmTestSuite::class) {
                project.jvmCompile {
                    addCompilationFrom(sources)
                }
    
                dependencies {
                    implementation(project.dependencies.create(project))
                    notForAccessorGeneration {
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Dec 22 18:51:33 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                targetJvmVersion = 17
            }
        }
        addCompilationFrom(sourceSets.main) {
            // For the production code, we derive the JVM version from the target runtime
            targetJvmVersion = gradleModule.targetRuntimes.computeProductionJvmTargetVersion()
        }
        addCompilationFrom(sourceSets.test)
    }
    
    removeTeamcityTempProperty()
    addDependencies()
    configureCompileDefaults()
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Dec 19 06:44:41 GMT 2025
    - 18.9K bytes
    - Click Count (0)
Back to Top