- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 889 for Plugin0 (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java
this.plugin = plugin; } public PluginNotFoundException(Plugin plugin, List<ArtifactRepository> remoteRepositories) { super( "Plugin could not be found, please check its coordinates for typos and ensure the required" + " plugin repositories are defined in the POM", plugin.getGroupId(), plugin.getArtifactId(),Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java
private final List<RemoteRepository> repositories; private final int hashCode; CacheKey(Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session) { groupId = plugin.getGroupId(); artifactId = plugin.getArtifactId(); version = plugin.getVersion(); workspace = RepositoryUtils.getWorkspace(session);
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/PluginResolutionException.java
* under the License. */ package org.apache.maven.plugin; import java.util.List; import java.util.stream.Collectors; import org.apache.maven.model.Plugin; /** * Exception occurring trying to resolve a plugin. * */ public class PluginResolutionException extends Exception { private final Plugin plugin; public PluginResolutionException(Plugin plugin, Throwable cause) { super(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/PluginTest.java
/** * Tests {@code Plugin}. * */ class PluginTest { @Test void testHashCodeNullSafe() { new Plugin().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Plugin().equals(null)); new Plugin().equals(new Plugin()); } @Test void testEqualsIdentity() { Plugin thing = new Plugin();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 1.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExceptionTest.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin; import java.util.Collections; import org.apache.maven.plugin.descriptor.MojoDescriptor; import org.apache.maven.plugin.descriptor.Parameter; import org.apache.maven.plugin.descriptor.PluginDescriptor; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 6.8K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/ConcurrencyDependencyGraphTest.java
import org.apache.maven.plugin.InvalidPluginDescriptorException; import org.apache.maven.plugin.MojoNotFoundException; import org.apache.maven.plugin.PluginDescriptorParsingException; import org.apache.maven.plugin.PluginNotFoundException; import org.apache.maven.plugin.PluginResolutionException; import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException; import org.apache.maven.plugin.version.PluginVersionResolutionException;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginArtifactsCache.java
*/ package org.apache.maven.plugin; import java.util.List; import org.apache.maven.artifact.Artifact; import org.apache.maven.model.Plugin; import org.apache.maven.project.MavenProject; import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.graph.DependencyFilter; import org.eclipse.aether.repository.RemoteRepository; /**
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/BuildPluginManager.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin; import java.util.List; import org.apache.maven.execution.MavenSession; import org.apache.maven.model.Plugin; import org.apache.maven.plugin.descriptor.MojoDescriptor; import org.apache.maven.plugin.descriptor.PluginDescriptor; import org.codehaus.plexus.classworlds.realm.ClassRealm;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/CacheUtils.java
} public static int pluginHashCode(Plugin plugin) { int hash = 17; hash = hash * 31 + Objects.hashCode(plugin.getGroupId()); hash = hash * 31 + Objects.hashCode(plugin.getArtifactId()); hash = hash * 31 + Objects.hashCode(plugin.getVersion()); hash = hash * 31 + (plugin.isExtensions() ? 1 : 0); for (Dependency dependency : plugin.getDependencies()) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin; import java.util.List; import java.util.Map; import org.apache.maven.artifact.Artifact; import org.apache.maven.model.Plugin; import org.apache.maven.project.MavenProject; import org.codehaus.plexus.classworlds.realm.ClassRealm; import org.eclipse.aether.RepositorySystemSession;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 3.5K bytes - Viewed (0)