- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for pluginArtifacts (0.27 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/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) -
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) -
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/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 informationRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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)