Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for Deleter (0.41 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultLegacySupport.java

     * internal utility component that is only public for technical reasons, it is not part of the public API. In
     * particular, this component can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    @Named
    @Singleton
    public class DefaultLegacySupport implements LegacySupport {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * Sets the project's class realm. <strong>Warning:</strong> This is an internal utility method that is only public
         * for technical reasons, it is not part of the public API. In particular, this method can be changed or deleted
         * without prior notice and must not be used by plugins.
         *
         * @param classRealm The class realm hosting the build extensions of this project, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultExecutionEventCatapult.java

    /**
     * Assists in firing execution events. <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.
     *
     */
    @Named
    @Singleton
    public class DefaultExecutionEventCatapult implements ExecutionEventCatapult {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                        for (Path path : (Iterable<Path>) paths::iterator) {
                            Files.delete(path);
                        }
                    }
                    try {
                        Files.delete(artifactPath);
                        Files.delete(artifactPath.getParent());
                        Files.delete(artifactPath.getParent().getParent());
                    } catch (DirectoryNotEmptyException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorUtils.java

    /**
     * <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.
     *
     */
    public class ArtifactDescriptorUtils {
    
        public static Artifact toPomArtifact(Artifact artifact) {
            Artifact pomArtifact = artifact;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:35 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataBridge.java

    /**
     * <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.
     *
     */
    @Deprecated
    public final class MetadataBridge extends AbstractMetadata implements MergeableMetadata {
    
        private ArtifactMetadata metadata;
    
        private boolean merged;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java

    /**
     * <p>
     * Presents a view of the Dependency Graph that is suited for concurrent building.
     * </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 class ConcurrencyDependencyGraph {
    
        private final ProjectBuildList projectBuilds;
    
        private final ProjectDependencyGraph projectDependencyGraph;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

     * 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
     */
    @Named
    @Singleton
    public class DefaultPluginDependenciesResolver implements PluginDependenciesResolver {
        private static final String REPOSITORY_CONTEXT = "plugin";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

     *
     * @since 3.0
     *         Builds one or more lifecycles for a full module
     *         NOTE: This class is not part of any public api and can be changed or deleted without prior notice.
     */
    @Named
    @Singleton
    public class BuilderCommon {
        private final Logger logger;
        private final LifecycleDebugLogger lifecycleDebugLogger;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

    /**
     * <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.
     *
     */
    @Deprecated
    public class LegacyLocalRepositoryManager implements LocalRepositoryManager {
    
        private final ArtifactRepository delegate;
    
        private final LocalRepository repo;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top