Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Deleter (0.5 sec)

  1. maven-core/src/test/projects/project-builder/it0063/jdk/jre/placeholder.txt

    need it so that empty directory does not get deleted...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 19 21:45:50 UTC 2021
    - 53 bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleTask.java

     * under the License.
     */
    package org.apache.maven.lifecycle.internal;
    
    /**
     * A task that is a lifecycle.
     * <p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public final class LifecycleTask extends Task {
        public LifecycleTask(String lifecyclePhase) {
            super(lifecyclePhase);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectArtifactFactory.java

    /**
     * <p>
     * Component interface responsible for creation of MavenProject#dependencyArtifacts instances.
     * </p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.2.4
     */
    public interface ProjectArtifactFactory {
        Set<Artifact> createArtifacts(MavenProject project) throws InvalidDependencyVersionException;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionEventCatapult.java

     * Assists in firing execution events. <strong>Warning:</strong> This is an internal utility interface that is only
     * public for technical reasons, it is not part of the public API. In particular, this interface can be changed or
     * deleted without prior notice.
     *
     */
    public interface ExecutionEventCatapult {
    
        void fire(ExecutionEvent.Type eventType, MavenSession session, MojoExecution mojoExecution);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ReactorContext.java

    import org.apache.maven.execution.MavenExecutionResult;
    
    /**
     * Context that is fixed for the entire reactor build.
     *
     * @since 3.0
     *         NOTE: This class is not part of any public api and can be changed or deleted without prior notice.
     */
    public class ReactorContext {
        private final MavenExecutionResult result;
    
        private final ClassLoader originalContextClassLoader;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildListCalculator.java

    import org.apache.maven.lifecycle.internal.builder.BuilderCommon;
    import org.apache.maven.project.MavenProject;
    
    /**
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    @Named
    @Singleton
    public class BuildListCalculator {
        public ProjectBuildList calculateProjectBuilds(MavenSession session, List<TaskSegment> taskSegments) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectIndex.java

    import org.apache.maven.project.MavenProject;
    
    /**
     * <p>
     * Provides the positional index of the project
     * </p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    // TODO Kristian wonders if this class really is necessary and if it overlaps other concepts.
    public final class ProjectIndex {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java

    /**
     * Assists the project builder. <strong>Warning:</strong> This is an internal utility class that is only public for
     * technical reasons, it is not part of the public API. In particular, this class can be changed or deleted without
     * prior notice.
     *
     * @since 3.0
     */
    public class EnvironmentUtils {
    
        private static Properties envVars;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/ProjectRealmCache.java

    /**
     * Caches project class realms. <strong>Warning:</strong> This is an internal utility interface that is only public for
     * technical reasons, it is not part of the public API. In particular, this interface can be changed or deleted without
     * prior notice.
     *
     */
    public interface ProjectRealmCache {
    
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/ExtensionRealmCache.java

    /**
     * Caches extension class realms. <strong>Warning:</strong> This is an internal utility interface that is only public
     * for technical reasons, it is not part of the public API. In particular, this interface can be changed or deleted
     * without prior notice.
     *
     */
    public interface ExtensionRealmCache {
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top