Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for pluginArtifacts (0.07 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginArtifactsCache.java

        }
    
        @Override
        public CacheRecord put(Key key, List<Artifact> pluginArtifacts) {
            Objects.requireNonNull(pluginArtifacts, "pluginArtifacts cannot be null");
    
            assertUniqueKey(key);
    
            CacheRecord record = new CacheRecord(Collections.unmodifiableList(new ArrayList<>(pluginArtifacts)));
    
            cache.put(key, record);
    
            return record;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

                throw e;
            }
        }
    
        @Override
        public CacheRecord put(Key key, ClassRealm pluginRealm, List<Artifact> pluginArtifacts) {
            Objects.requireNonNull(pluginRealm, "pluginRealm cannot be null");
            Objects.requireNonNull(pluginArtifacts, "pluginArtifacts cannot be null");
    
            if (cache.containsKey(key)) {
                throw new IllegalStateException("Duplicate plugin realm for plugin " + key);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java

                boolean aggregating,
                RepositorySystemSession session);
    
        CacheRecord get(Key key) throws LifecycleExecutionException;
    
        CacheRecord put(Key key, Set<Artifact> pluginArtifacts);
    
        CacheRecord put(Key key, LifecycleExecutionException e);
    
        void flush();
    
        /**
         * Registers the specified cache record for usage with the given project. Integrators can use the information
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginArtifactsCache.java

                List<RemoteRepository> repositories,
                RepositorySystemSession session);
    
        CacheRecord get(Key key) throws PluginResolutionException;
    
        CacheRecord put(Key key, List<Artifact> pluginArtifacts);
    
        CacheRecord put(Key key, PluginResolutionException e);
    
        void flush();
    
        /**
         * Registers the specified cache record for usage with the given project. Integrators can use the information
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java

                CacheRecord tcr = supplier.load();
                cr = put(key, tcr.getRealm(), tcr.getArtifacts());
            }
            return cr;
        }
    
        CacheRecord put(Key key, ClassRealm pluginRealm, List<Artifact> pluginArtifacts);
    
        void flush();
    
        /**
         * Registers the specified cache record for usage with the given project. Integrators can use the information
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

        </parent>
        ]]></configuration>
        <description> This is the Artifact instance for the parent of the current POM.
        </description>
      </expression>
      <expression>
        <syntax>project.pluginArtifacts</syntax>
        <configuration>
          <![CDATA[
    <build>
      <plugins>
        ...
      </plugins>
    </build>
        ]]></configuration>
        <description>
          <![CDATA[
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/project/artifact/PluginArtifact.java

    import org.apache.maven.model.Dependency;
    import org.apache.maven.model.Plugin;
    
    /**
     * PluginArtifact
     */
    public class PluginArtifact extends DefaultArtifact implements ArtifactWithDependencies {
        private Plugin plugin;
    
        public PluginArtifact(Plugin plugin, Artifact pluginArtifact) {
            super(
                    plugin.getGroupId(),
                    plugin.getArtifactId(),
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginValidator.java

        @Override
        public void validate(Artifact pluginArtifact, PluginDescriptor pluginDescriptor, List<String> errors) {
            if (!pluginArtifact.getGroupId().equals(pluginDescriptor.getGroupId())) {
                errors.add("Plugin's descriptor contains the wrong group ID: " + pluginDescriptor.getGroupId());
            }
    
            if (!pluginArtifact.getArtifactId().equals(pluginDescriptor.getArtifactId())) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/AbstractMavenPluginDependenciesValidator.java

                Artifact pluginArtifact,
                ArtifactDescriptorResult artifactDescriptorResult) {
            if (artifactDescriptorResult.getDependencies() != null) {
                doValidate(session, pluginArtifact, artifactDescriptorResult);
            }
        }
    
        protected abstract void doValidate(
                RepositorySystemSession session,
                Artifact pluginArtifact,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/Maven3CompatDependenciesValidator.java

            super(pluginValidationManager);
        }
    
        @Override
        protected void doValidate(
                RepositorySystemSession session,
                Artifact pluginArtifact,
                ArtifactDescriptorResult artifactDescriptorResult) {
            for (org.eclipse.aether.graph.Dependency dependency : artifactDescriptorResult.getDependencies()) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top