Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getSourcesElementsConfigurationName (0.52 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSet.java

        @Override
        public String getJavadocElementsConfigurationName() {
            return configurationNameOf(JvmConstants.JAVADOC_ELEMENTS_CONFIGURATION_NAME);
        }
    
        @Override
        public String getSourcesElementsConfigurationName() {
            return configurationNameOf(JvmConstants.SOURCES_ELEMENTS_CONFIGURATION_NAME);
        }
    
        @Override
        public SourceSetOutput getOutput() {
            return output;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

            } else {
                SourceSet main = getSourceSets().getByName(SourceSet.MAIN_SOURCE_SET_NAME);
                JvmPluginsHelper.createDocumentationVariantWithArtifact(
                    main.getSourcesElementsConfigurationName(),
                    null,
                    SOURCES,
                    Collections.emptySet(),
                    main.getSourcesJarTaskName(),
                    main.getAllSource(),
                    project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         * original source code in packaged form. Used to publish a variant with a '-sources' zip.
         *
         * @return the name of the sources elements configuration.
         * @since 6.0
         */
        String getSourcesElementsConfigurationName();
    
        /**
         * Determines if this source set is the main source set
         *
         * @since 6.7
         */
        static boolean isMain(SourceSet sourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

            if (sourcesElements != null) {
                return;
            }
            this.sourcesElements = JvmPluginsHelper.createDocumentationVariantWithArtifact(
                sourceSet.getSourcesElementsConfigurationName(),
                SourceSet.isMain(sourceSet) ? null : name,
                SOURCES,
                capabilities,
                sourceSet.getSourcesJarTaskName(),
                sourceSet.getAllSource(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.SourceSet.getRuntimeOnlyConfigurationName()> does not have raw return type assignable to org.gradle.api.provider.Provider in (SourceSet.java:0)
    Method <org.gradle.api.tasks.SourceSet.getSourcesElementsConfigurationName()> does not have raw return type assignable to org.gradle.api.provider.Provider in (SourceSet.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top