- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for SourceSet (0.05 seconds)
-
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"))) } }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Sep 19 05:45:14 GMT 2025 - 5.8K bytes - Click Count (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()
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) -
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 {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Oct 01 11:57:43 GMT 2025 - 9.3K bytes - Click Count (0)