- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 11 for pluginArtifacts (0.08 seconds)
-
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));
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 09 16:35:21 GMT 2025 - 46.4K bytes - Click Count (0) -
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; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.9K bytes - Click Count (0) -
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);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 7.5K bytes - Click Count (0) -
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)); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 10.8K bytes - Click Count (0) -
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); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 51.8K bytes - Click Count (0) -
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) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Aug 29 12:47:20 GMT 2025 - 67K bytes - Click Count (0) -
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(),Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.7K bytes - Click Count (0) -
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) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 15:32:43 GMT 2025 - 12.3K bytes - Click Count (0) -
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 {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 16.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java
return pluginKey(pd.getGroupId(), pd.getArtifactId(), pd.getVersion()); } private String pluginKey(Artifact pluginArtifact) { return pluginKey(pluginArtifact.getGroupId(), pluginArtifact.getArtifactId(), pluginArtifact.getVersion()); } private void mayReportInline(RepositorySystemSession session, IssueLocality locality, String issue) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:32 GMT 2025 - 17.5K bytes - Click Count (0)