Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for Rename (0.14 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataSource.java

     * Provides some metadata operations, like querying the remote repository for a list of versions available for an
     * artifact.
     *
     */
    @Deprecated
    public interface MetadataSource {
        String ROLE = MetadataSource.class.getName();
    
        MetadataResolution retrieve(
                ArtifactMetadata artifact, ArtifactRepository localRepository, List<ArtifactRepository> remoteRepositories)
                throws MetadataRetrievalException;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/Utils.java

        }
    
        static <T> T nonNull(T t, String name) {
            if (t == null) {
                throw new IllegalArgumentException(name + " cannot be null");
            }
            return t;
        }
    
        static <T> T cast(Class<T> clazz, Object o, String name) {
            if (!clazz.isInstance(o)) {
                if (o == null) {
                    throw new IllegalArgumentException(name + " is null");
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/ValidatingConfigurationListener.java

            if (mojoDescriptor.getParameters() != null) {
                for (Parameter param : mojoDescriptor.getParameters()) {
                    if (param.isRequired()) {
                        missingParameters.put(param.getName(), param);
                    }
                }
            }
        }
    
        public Collection<Parameter> getMissingParameters() {
            return missingParameters.values();
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java

    import org.apache.maven.settings.Settings;
    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    
    /**
     */
    @Deprecated
    public interface PluginManager {
        String ROLE = PluginManager.class.getName();
    
        void executeMojo(MavenProject project, MojoExecution execution, MavenSession session)
                throws MojoExecutionException, ArtifactResolutionException, MojoFailureException, ArtifactNotFoundException,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/DebugConfigurationListener.java

         * @deprecated Use {@link #DebugConfigurationListener(Logger)} instead.
         */
        @Deprecated
        public DebugConfigurationListener(org.codehaus.plexus.logging.Logger logger) {
            this(LoggerFactory.getLogger(logger.getName()));
        }
    
        public DebugConfigurationListener(Logger logger) {
            this.logger = logger;
        }
    
        public void notifyFieldChangeUsingSetter(String fieldName, Object value, Object target) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedPluginValidator.java

                Parameter parameter,
                PlexusConfiguration pomConfiguration,
                ExpressionEvaluator expressionEvaluator) {
            PlexusConfiguration config = pomConfiguration.getChild(parameter.getName(), false);
    
            if (isValueSet(config, expressionEvaluator)) {
                pluginValidationManager.reportPluginMojoValidationIssue(
                        PluginValidationManager.IssueLocality.INTERNAL,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ExclusionArtifactFilter.java

            return (Path) Proxy.newProxyInstance(
                    ExclusionArtifactFilter.class.getClassLoader(), new Class[] {Path.class}, (proxy1, method, args) -> {
                        if ("toString".equals(method.getName())) {
                            return value;
                        }
                        throw new UnsupportedOperationException();
                    });
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Aug 29 15:25:58 GMT 2023
    - 3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyDispatcher.java

                }
            }
        }
    
        private void logError(String action, Throwable e, EventSpy spy) {
            String msg = "Failed to " + action + " spy " + spy.getClass().getName() + ": " + e.getMessage();
    
            if (logger.isDebugEnabled()) {
                logger.warn(msg, e);
            } else {
                logger.warn(msg);
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java

    import java.util.List;
    
    /**
     * Convenience interface for plugins to add or replace artifacts and resources on projects.
     */
    public interface MavenProjectHelper {
        String ROLE = MavenProjectHelper.class.getName();
    
        /**
         * See {@link #attachArtifact(MavenProject, String, String, java.io.File)}, but with type set to null.
         * @param project project reference.
         * @param artifactFile artifact file.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java

     * A facade that provides lifecycle services to components outside Maven core.
     *
     */
    public interface LifecycleExecutor {
    
        // USED BY MAVEN HELP PLUGIN
        @Deprecated
        String ROLE = LifecycleExecutor.class.getName();
    
        // For a given project packaging find all the plugins that are bound to any registered
        // lifecycles. The project builder needs to now what default plugin information needs to be
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.2K bytes
    - Viewed (0)
Back to top