Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for PluginDescriptor (0.25 sec)

  1. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            assertEquals("expected-directory" + File.separatorChar + "expected-finalName", value);
        }
    
        @Test
        void testShouldExtractPluginArtifacts() throws Exception {
            PluginDescriptor pd = new PluginDescriptor();
    
            Artifact artifact = createArtifact("testGroup", "testArtifact", "1.0");
    
            pd.setArtifacts(Collections.singletonList(artifact));
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

                MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
                PluginDescriptor pluginDescriptor = mojoDescriptor.getPluginDescriptor();
                return getMavenSession().getPluginContext(pluginDescriptor, ((DefaultProject) project).getProject());
            } catch (LookupException e) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

                    int pathSeparator = expression.indexOf('/');
    
                    PluginDescriptor pluginDescriptor = mojoDescriptor.getPluginDescriptor();
    
                    if (pathSeparator > 0) {
                        String pathExpression = expression.substring(0, pathSeparator);
                        value = ReflectionValueExtractor.evaluate(pathExpression, pluginDescriptor);
                        value = value + expression.substring(pathSeparator);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Oct 17 17:55:08 GMT 2023
    - 16.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

    import org.apache.maven.api.Node;
    import org.apache.maven.api.Plugin;
    import org.apache.maven.api.model.PluginExecution;
    import org.apache.maven.api.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.api.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.api.plugin.descriptor.lifecycle.Lifecycle;
    import org.apache.maven.api.xml.XmlNode;
    import org.codehaus.plexus.util.xml.Xpp3Dom;
    import org.eclipse.aether.graph.DependencyNode;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

         * Verifies the specified plugin is compatible with the current Maven runtime.
         *
         * @param pluginDescriptor The descriptor of the plugin to check, must not be {@code null}.
         * @deprecated Use {@link #checkPrerequisites(PluginDescriptor)} instead.
         */
        @Deprecated
        void checkRequiredMavenVersion(PluginDescriptor pluginDescriptor) throws PluginIncompatibleException;
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java

            for (Plugin plugin : plugins) {
                try {
                    PluginDescriptor pluginDescriptor =
                            pluginManager.loadPlugin(plugin, request.getRepositories(), request.getRepositorySession());
    
                    if (request.getPrefix().equals(pluginDescriptor.getGoalPrefix())) {
                        return new DefaultPluginPrefixResult(plugin);
                    }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorCache.java

        interface PluginDescriptorSupplier {
            PluginDescriptor load()
                    throws PluginResolutionException, PluginDescriptorParsingException, InvalidPluginDescriptorException;
        }
    
        Key createKey(Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session);
    
        void put(Key key, PluginDescriptor pluginDescriptor);
    
        PluginDescriptor get(Key key);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginValidator.java

    import java.util.List;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    
    /**
     * MavenPluginValidator
     */
    public interface MavenPluginValidator {
    
        void validate(Artifact pluginArtifact, PluginDescriptor pluginDescriptor, List<String> errors);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 11:03:17 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java

                throws LifecycleExecutionException {
            return null;
        }
    
        public static MojoDescriptor createMojoDescriptor(Plugin plugin) {
            final PluginDescriptor descriptor = new PluginDescriptor();
            descriptor.setGroupId(plugin.getGroupId());
            descriptor.setArtifactId(plugin.getArtifactId());
            descriptor.setPlugin(plugin);
            descriptor.setVersion(plugin.getVersion());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

    import org.apache.maven.internal.impl.SettingsUtilsV4;
    import org.apache.maven.model.Profile;
    import org.apache.maven.monitor.event.EventDispatcher;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuildingRequest;
    import org.apache.maven.settings.Mirror;
    import org.apache.maven.settings.Proxy;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
Back to top