Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for getPublications (0.29 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                    project.getExtensions().configure(PublishingExtension.class, publishing -> {
                        final ComponentWithVariants mainVariant = component.getMainPublication();
                        publishing.getPublications().create("main", MavenPublication.class, publication -> {
                            MavenPublicationInternal publicationInternal = (MavenPublicationInternal) publication;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/tasks/GenerateModuleMetadata.java

        @Internal
        public Property<Publication> getPublication() {
            return publication.get();
        }
    
        // TODO - this should be an input
    
        /**
         * Returns the publications of the current project, used in generation to connect the modules of a component together.
         *
         * @since 4.4
         */
        @Internal
        public ListProperty<Publication> getPublications() {
            return publications.get();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTest.groovy

                    a { id = "a.plugin" }
                    b { id = "b.plugin" }
                }
            }
    
            then:
            def publications = project.services.get(ProjectPublicationRegistry).getPublications(PluginPublication, project.identityPath)
            publications.size() == 2
            publications[0].pluginId == DefaultPluginId.of("a.plugin")
            publications[1].pluginId == DefaultPluginId.of("b.plugin")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ProjectDependency.java

        /**
         * Returns the source artifact of the project publication
         *
         * @see #getPublication()
         * @since 5.6
         */
        public FileReference getPublicationSourcePath() {
            return publicationSourcePath;
        }
    
        /**
         * Sets the source artifact of the project publication
         *
         * @see #getPublication()
         * @since 5.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/AbstractPublishToMaven.java

        }
    
        /**
         * The publication to be published.
         *
         * @return The publication to be published
         */
        @Internal
        public MavenPublication getPublication() {
            return publication.get();
        }
    
        /**
         * Sets the publication to be published.
         *
         * @param publication The publication to be published
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/PublishToIvyRepository.java

        }
    
        /**
         * The publication to be published.
         *
         * @return The publication to be published
         */
        @Internal
        public IvyPublication getPublication() {
            return publication.get();
        }
    
        /**
         * Sets the publication to be published.
         *
         * @param publication The publication to be published
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

                        classpathElements.getExternalDependencies().add(DefaultEclipseExternalDependency.createResolved(projectDependency.getPublication().getFile(), javadoc, source, null, projectDependency.isExported(), createAttributes(projectDependency), createAccessRules(projectDependency)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.publish.ivy.tasks.PublishToIvyRepository.getPublication()> does not have raw return type assignable to org.gradle.api.provider.Property in (PublishToIvyRepository.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.eclipse.model.ProjectDependency.getKind()> does not have raw return type assignable to org.gradle.api.provider.Provider in (ProjectDependency.java:0)
    Method <org.gradle.plugins.ide.eclipse.model.ProjectDependency.getPublication()> does not have raw return type assignable to org.gradle.api.provider.Property in (ProjectDependency.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)
  10. test-site/activator-launch-1.3.2.jar

    org.apache.ivy.core.module.id.ModuleId getModuleId(); public final org.apache.ivy.core.module.descriptor.ModuleDescriptor getDescriptor(); public final ResolveData getData(); public final ResolvedModuleRevisi getModuleRevision(); public final long getPublication(); public final long getLastModified(); public final org.apache.ivy.core.module.id.ModuleRevisionId getResolvedId(); public final void clean(); final boolean canExclude(String); public final IvyNodeCallers$Caller[] getCallers(String); public final...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top