Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pluginArtifacts (0.1 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/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)
  3. 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)
  4. 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)
Back to top