Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for pluginArtifacts (0.09 sec)

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

                    RepositoryUtils.toArtifact(pluginArtifact),
                    dependencyFilter,
                    project.getRemotePluginRepositories(),
                    repositorySession);
    
            pluginArtifacts = toMavenArtifacts(result);
    
            pluginRealm = classRealmManager.createPluginRealm(
                    plugin, parent, null, foreignImports, toAetherArtifacts(pluginArtifacts));
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

            Thread.currentThread().setContextClassLoader(projectRealm);
        }
    
        private List<org.eclipse.aether.artifact.Artifact> toAetherArtifacts(final List<Artifact> pluginArtifacts) {
            return new ArrayList<>(RepositoryUtils.toArtifacts(pluginArtifacts));
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 10.8K 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. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // pluginArtifacts
                Set<Artifact> pluginArtifacts = new HashSet<>();
                for (Plugin plugin : project.getModel().getDelegate().getBuild().getPlugins()) {
                    Artifact artifact = repositorySystem.createPluginArtifact(new org.apache.maven.model.Plugin(plugin));
    
                    if (artifact != null) {
                        pluginArtifacts.add(artifact);
                    }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
            return artifactMap;
        }
    
        public void setPluginArtifacts(Set<Artifact> pluginArtifacts) {
            this.pluginArtifacts = pluginArtifacts;
    
            this.pluginArtifactMap = null;
        }
    
        public Set<Artifact> getPluginArtifacts() {
            return pluginArtifacts;
        }
    
        public Map<String, Artifact> getPluginArtifactMap() {
            if (pluginArtifactMap == null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  8. 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)
  9. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

                if (requiredMavenVersion != null) {
                    Map<String, String> props = new LinkedHashMap<>(pluginArtifact.getProperties());
                    props.put("requiredMavenVersion", requiredMavenVersion);
                    pluginArtifact = pluginArtifact.setProperties(props);
                }
            } catch (ArtifactDescriptorException e) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 15:32:43 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  10. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

        }
    
        public Plugin getPlugin() {
            return plugin;
        }
    
        public Artifact getPluginArtifact() {
            return pluginArtifact;
        }
    
        public void setPluginArtifact(Artifact pluginArtifact) {
            this.pluginArtifact = pluginArtifact;
        }
    
        public Lifecycle getLifecycleMapping(String lifecycleId) throws IOException, XMLStreamException {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 16.2K bytes
    - Viewed (0)
Back to top