- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for pluginArtifacts (0.05 sec)
-
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) -
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) -
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) -
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) -
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) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:32 UTC 2025 - 17.5K bytes - Viewed (0)