Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testResource (0.23 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        plugins.withType<IdeaPlugin> {
            with(model) {
                module {
                    testSources.from(sourceSet.java.srcDirs, sourceSet.the<GroovySourceDirectorySet>().srcDirs)
                    testResources.from(sourceSet.resources.srcDirs)
                }
            }
        }
    }
    
    
    private
    fun Project.bucket(name: String, description: String) = configurations.create(name) {
        isVisible = false
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

            module {
                val testFixtures = sourceSets.testFixtures.get()
                testSources.from(testFixtures.java.srcDirs)
                testSources.from(testFixtures.groovy.srcDirs)
                testResources.from(testFixtures.resources.srcDirs)
            }
        }
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 3.3K bytes
    - Viewed (0)
Back to top