Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
Back to top