Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for mainResources (0.41 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r50/ToolingApiIdeaModelCrossVersionSpec.groovy

        def "custom source sets are not added as source directories by default"() {
    
            buildFile.text = '''
    apply plugin: 'java'
    
    sourceSets {
        main {
            java { srcDirs = ['mainSources'] }
            resources { srcDirs = ['mainResources'] }
        }
    
        foo {
            java { srcDirs = ['fooSources'] }
            resources { srcDirs = ['fooResources'] }
        }
    
        test {
            java { srcDirs = ['testSources'] }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/GeneratedSourcesIntegrationTest.groovy

            def asmSources = app.sourceFiles.findAll({it.path == 'asm'})
            def mainSources = app.headerFiles + app.sourceFiles.findAll({it.path != 'asm'})
            mainSources.removeAll {it.path == 'asm'}
            mainSources*.writeToDir(file("src/main"))
            asmSources*.writeToDir(file("src/input"))
            degenerateInputSources()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/report-aggregation/src/main/groovy/com.example.report-aggregation.gradle

        attributes {
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.VERIFICATION))
            attribute(VerificationType.VERIFICATION_TYPE_ATTRIBUTE, objects.named(VerificationType, VerificationType.MAIN_SOURCES))
        }
    }
    
    // A resolvable configuration to collect JaCoCo coverage data
    def coverageDataPath = configurations.create('coverageDataPath') {
        visible = false
        canBeConsumed = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/report-aggregation/src/main/kotlin/com.example.report-aggregation.gradle.kts

        extendsFrom(aggregate)
        attributes {
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.VERIFICATION))
            attribute(VerificationType.VERIFICATION_TYPE_ATTRIBUTE, objects.named(VerificationType.MAIN_SOURCES))
        }
    }
    
    // A resolvable configuration to collect JaCoCo coverage data
    val coverageDataPath by configurations.creating {
        isVisible = false
        isCanBeConsumed = false
        extendsFrom(aggregate)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/attributes/VerificationType.java

        /**
         * A list of directories containing source code, includes code in transitive dependencies
         */
        String MAIN_SOURCES = "main-sources";
    
        /**
         * Binary results of running tests containing pass/fail information
         */
        String JACOCO_RESULTS = "jacoco-coverage";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 23 18:49:28 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmEcosystemAttributesDetails.java

            attributes.attribute(VerificationType.VERIFICATION_TYPE_ATTRIBUTE, objectFactory.named(VerificationType.class, VerificationType.MAIN_SOURCES));
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginIntegrationTest.groovy

                        attribute(VerificationType.VERIFICATION_TYPE_ATTRIBUTE, objects.named(VerificationType.class, VerificationType.MAIN_SOURCES))
                    }
                }
    
                dependencies {
                    sourceElements project
                }
    
                def testResolve = tasks.register('testResolve') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top