- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for SourceSet (0.05 sec)
-
build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompileExtension.kt
fun Project.addCompilationFrom(sourceSet: NamedDomainObjectProvider<SourceSet>): JvmCompilation { return addCompilationFrom(sourceSet.get()) } fun Project.addCompilationFrom(sourceSet: NamedDomainObjectProvider<SourceSet>, configure: JvmCompilation.() -> Unit): JvmCompilation { return addCompilationFrom(sourceSet.get(), configure) }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Jun 24 14:00:52 UTC 2025 - 1.9K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts
extensions.create<IntegrationTestExtension>("integTest").apply { generateDefaultAutoTestedSamplesTest.convention(true) testJvmXmx.convention("512m") } val sourceSet = sourceSets.create("${TestType.INTEGRATION.prefix}Test") jvmCompile { addCompilationFrom(sourceSet) } addDependenciesAndConfigurations(TestType.INTEGRATION.prefix) configurations.named("integTestRuntimeClasspath") {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 16:39:23 UTC 2025 - 2.4K bytes - Viewed (5) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt
@Suppress("UnusedPrivateProperty") internal fun Project.createGenerateAutoTestedSamplesTestTask(sourceSet: SourceSet, testType: TestType) { val prefix = testType.prefix val sourceSets = the<SourceSetContainer>() val main by sourceSets.getting val sourceSet = sourceSets.getByName("${prefix}Test") val groovySourceDir = sourceSet.extensions.findByType<GroovySourceDirectorySet>()Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 16:39:23 UTC 2025 - 12.8K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompilation.kt
fun Project.from(sourceSet: SourceSet) { associate(tasks.named<JavaCompile>(sourceSet.getCompileTaskName("java"))) plugins.withType<GroovyBasePlugin>() { associate(tasks.named<GroovyCompile>(sourceSet.getCompileTaskName("groovy"))) } plugins.withId("org.jetbrains.kotlin.jvm") { associate(tasks.named<KotlinCompile>(sourceSet.getCompileTaskName("kotlin"))) } }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Sep 19 05:45:14 UTC 2025 - 5.8K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts
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()
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Sep 05 02:31:24 UTC 2025 - 4.5K bytes - Viewed (0) -
buildSrc/src/main/kotlin/Osgi.kt
// // The forwarding SourceSet also needs to fake out some task names to prevent them from being // registered twice. // // https://github.com/bndtools/bnd/issues/6590 val jvmMainSourceSet = sourceSets.getByName("jvmMain") val mainSourceSet = object : SourceSet by jvmMainSourceSet { override fun getName() = "main"
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 5.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt
* limitations under the License. */ package model import configurations.FunctionalTest import configurations.ParallelizationMethod import java.util.SortedSet class TestClassTime( val sourceSet: String, val buildTimeMs: Int, ) data class TestCoverageAndBucketSplits( val testCoverageUuid: Int, val buckets: List<FunctionalTestBucket>, ) data class FunctionalTestBucket(
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 3.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
.map { SubprojectTestClassTime( model.subprojects.getSubprojectByName(it.key)!!, it.value.filter { tct -> tct.sourceSet != "test" }, ) }.sortedBy { -it.totalTime } .filter { onlyNativeSubprojectsForIntelMacs(testCoverage, it.subProject.name) }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 7.3K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
reportFormat = "console" } tasks.withType<CodeNarc>().configureEach { if (name.contains("IntegTest")) { config = configFile("codenarc-integtests.xml") } } val SourceSet.allGroovy: SourceDirectorySet get() = the<GroovySourceDirectorySet>() abstract class CodeNarcRule @Inject constructor( private val groovyVersion: String ) : ComponentMetadataRule {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Oct 01 11:57:43 UTC 2025 - 9.3K bytes - Viewed (0)