Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 883 for strong (0.28 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleTask.java

     */
    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);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionListener.java

    import org.apache.maven.lifecycle.LifecycleExecutionException;
    
    /**
     * <p>
     * Extension point that allows build extensions observe and possibly veto project build execution.
     * </p>
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     *
     * @see ExecutionListener
     * @see MojoExecutionListener
     * @since 3.1.2
     */
    public interface ProjectExecutionListener {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorCache.java

     * artifact and does not contain any runtime specific data. The cache must not be used for descriptors that hold runtime
     * data like the plugin realm. <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.
     *
     * @since 3.0
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/LegacySupport.java

    import org.apache.maven.execution.MavenSession;
    import org.eclipse.aether.RepositorySystemSession;
    
    /**
     * Helps to provide backward-compatibility with plugins that use legacy components. <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.
     *
     * @since 3.0
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java

    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.graph.DependencyFilter;
    import org.eclipse.aether.repository.RemoteRepository;
    
    /**
     * Caches plugin 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.
     *
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/ExtensionRealmCache.java

    import org.apache.maven.project.ExtensionDescriptor;
    import org.apache.maven.project.MavenProject;
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    
    /**
     * 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.
     *
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataBridge.java

        }
    
        public String getType() {
            return metadata.getRemoteFilename();
        }
    
        private String emptify(String string) {
            return (string != null) ? string : "";
        }
    
        public File getFile() {
            return null;
        }
    
        public MetadataBridge setFile(File file) {
            return this;
        }
    
        @Override
        public Path getPath() {
            return null;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectBuildList.java

        public ProjectSegment get(int index) {
            return items.get(index);
        }
    
        public Set<String> getReactorProjectKeys() {
            Set<String> projectKeys = new HashSet<>(items.size() * 2);
            for (ProjectSegment projectBuild : items) {
                MavenProject project = projectBuild.getProject();
                String key = ArtifactUtils.key(project.getGroupId(), project.getArtifactId(), project.getVersion());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingHelper.java

    import org.apache.maven.plugin.PluginManagerException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    
    /**
     * Assists the project builder. <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.
     *
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                final ThreadOutputMuxer muxer,
                final Set<String> duplicateArtifactIds) {
            return () -> {
                final Thread currentThread = Thread.currentThread();
                final String originalThreadName = currentThread.getName();
                final MavenProject project = projectBuild.getProject();
    
                final String threadNameSuffix = duplicateArtifactIds.contains(project.getArtifactId())
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 9.4K bytes
    - Viewed (0)
Back to top