Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sourcesElements (0.23 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenJavaModule.groovy

                if (withDocumentation) {
                    expectedVariants.addAll([variantName(feature, 'javadocElements'), variantName(feature, 'sourcesElements')])
                }
            }
            def parsedModuleVariants = mavenModule.parsedModuleMetadata.variants*.name as TreeSet
            assert parsedModuleVariants == expectedVariants
    
            features.each { feature ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

      - Value: 'javadoc' selects variant: 'javadocElements'
      - Value: 'sources' selects variant: 'sourcesElements'"""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PluginVariantResolveIntegrationTest.groovy

                            implementationClass = 'com.acme.MyPlugin'
                        }
                    }
                }
    
                configurations.all {
                    if (it.canBeConsumed && it.name != 'sourcesElements' ) {
                        // let's pretend it was built with a newer Java version
                        attributes {
                            // This test is not Artic Code Vault safe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 12:51:28 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

        /**
         * The name of the sources elements configuration.
         *
         * @since 6.0
         */
        public static final String SOURCES_ELEMENTS_CONFIGURATION_NAME = "sourcesElements";
    
        /**
         * The name of the compile classpath configuration.
         *
         * @since 3.4
         */
        public static final String COMPILE_CLASSPATH_CONFIGURATION_NAME = "compileClasspath";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

            given:
            buildFile << '''
                subprojects {
                    java {
                        withSourcesJar()
                    }
                    configurations {
                        sourcesElements.extendsFrom api, implementation
                    }
                }
            '''
    
            when:
            succeeds 'a:collectSources'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top