- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 218 for Descriptors (0.06 sec)
-
CHANGELOG/CHANGELOG-1.5.md
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 136.4K bytes - Viewed (0) -
impl/maven-core/src/site/apt/offline-mode.apt
*** DefaultLifecycleExecutor When binding goals to the project's configured lifecycle, each mojo descriptor should declare whether it requires online/offline status. This value should be a java.lang.Boolean, so it can implement 3VL (three value logic: yes, no, don't-care). The requiresOnline field in the mojo descriptor has the following semantics: [true] Online status is required for this mojo to function correctly.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 10.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java
*/ 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.apache.maven.project.MavenProject; import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.graph.DependencyFilter;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java
import org.apache.maven.model.Build; import org.apache.maven.model.Dependency; import org.apache.maven.model.Model; import org.apache.maven.model.root.RootLocator; import org.apache.maven.plugin.descriptor.MojoDescriptor; import org.apache.maven.plugin.descriptor.PluginDescriptor; import org.apache.maven.project.CycleDetectedException; import org.apache.maven.project.DuplicateProjectException; import org.apache.maven.project.MavenProject;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.4K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java
final PluginDescriptor descriptor = new PluginDescriptor(); descriptor.setGroupId(plugin.getGroupId()); descriptor.setArtifactId(plugin.getArtifactId()); descriptor.setPlugin(plugin); descriptor.setVersion(plugin.getVersion()); final MojoDescriptor mojoDescriptor = new MojoDescriptor(); mojoDescriptor.setPluginDescriptor(descriptor); return mojoDescriptor; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/internal/MavenPluginValidatorTest.java
new DefaultArtifactHandler("ignore")); PluginDescriptor descriptor = new PluginDescriptor(); descriptor.setGroupId("org.apache.maven.its.plugins"); descriptor.setArtifactId("maven-it-plugin"); descriptor.setVersion("0.1"); List<String> errors = new ArrayList<>(); mavenPluginValidator.validate(plugin, descriptor, errors); assertTrue(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 4.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/PluginLifecycle.java
import org.apache.maven.api.model.Plugin; import org.apache.maven.plugin.descriptor.PluginDescriptor; class PluginLifecycle implements Lifecycle { private final org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle lifecycleOverlay; private final PluginDescriptor pluginDescriptor; PluginLifecycle( org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle lifecycleOverlay,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginValidator.java
if (!pluginArtifact.getGroupId().equals(pluginDescriptor.getGroupId())) { errors.add("Plugin's descriptor contains the wrong group ID: " + pluginDescriptor.getGroupId()); } if (!pluginArtifact.getArtifactId().equals(pluginDescriptor.getArtifactId())) { errors.add("Plugin's descriptor contains the wrong artifact ID: " + pluginDescriptor.getArtifactId()); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java
assertEquals(1, pluginDescriptor.getDependencies().size()); for (ComponentDescriptor<?> descriptor : pluginDescriptor.getComponents()) { assertNotNull(descriptor.getRealm()); assertNotNull(descriptor.getImplementationClass()); } // reload plugin realm from cacheRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
} @Test void testGetSecurityWithValidSecurityDescriptor() throws Exception { // Setup mock ShareInfo502 with a minimal valid security descriptor srvsvc.ShareInfo502 info502 = new srvsvc.ShareInfo502(); // Create a minimal valid security descriptor binary // Format: revision(1) + sbz1(1) + control(2) + ownerOffset(4) + groupOffset(4) + saclOffset(4) + daclOffset(4) = 20 bytes minimumRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0)