Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 289 for link (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/PropertyContributorExtender.java

    import java.util.Properties;
    
    import org.apache.maven.api.services.Lookup;
    import org.apache.maven.api.spi.PropertyContributor;
    import org.apache.maven.execution.MavenExecutionRequest;
    
    /**
     * Extender that manages {@link PropertyContributor}.
     *
     * @since 4.0.0
     */
    @Named
    @Singleton
    class PropertyContributorExtender implements MavenExecutionRequestExtender {
        private final Lookup lookup;
    
        @Inject
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Feb 20 15:38:09 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionParser.java

    import org.apache.maven.api.VersionRange;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Service interface to parse {@link Version} and {@link VersionRange}.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface VersionParser extends Service {
    
        /**
         * Parses the specified version string, for example "1.0".
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/properties/internal/SystemProperties.java

        }
    
        /**
         * Returns a copy of {@link System#getProperties()} in a thread-safe manner.
         *
         * @return {@link System#getProperties()} obtained in a thread-safe manner.
         */
        public static Properties getSystemProperties() {
            return copyProperties(System.getProperties());
        }
    
        /**
         * Copies the given {@link Properties} object into a new {@link Properties} object, in a thread-safe manner.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/artifact/FatArtifactTraverser.java

    import static java.util.Objects.requireNonNull;
    
    /**
     * A dependency traverser that excludes the dependencies of fat artifacts from the traversal. Fat artifacts are
     * artifacts that have the property {@link MavenArtifactProperties#INCLUDES_DEPENDENCIES} set to
     * {@code true}.
     *
     * @see org.eclipse.aether.artifact.Artifact#getProperties()
     * @see MavenArtifactProperties
     * @since 4.0.0
     */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  5. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/MultipleArtifactsNotFoundException.java

        }
    
        /**
         * artifacts that could be resolved
         *
         * @return {@link List} of {@link Artifact}
         */
        public List<Artifact> getResolvedArtifacts() {
            return resolvedArtifacts;
        }
    
        /**
         * artifacts that could NOT be resolved
         *
         * @return {@link List} of {@link Artifact}
         */
        public List<Artifact> getMissingArtifacts() {
            return missingArtifacts;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.4K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/project/MavenProjectBuilder.java

    import org.apache.maven.artifact.resolver.ArtifactResolutionException;
    import org.apache.maven.profiles.ProfileManager;
    import org.apache.maven.wagon.events.TransferListener;
    
    /**
     * @deprecated use {@link ProjectBuilder} instead
     */
    @Deprecated
    public interface MavenProjectBuilder {
    
        MavenProject build(File pom, ProjectBuilderConfiguration configuration) throws ProjectBuildingException;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 3.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

            return ModuleDescriptor.read(in).name();
        }
    
        /**
         * Returns the type of path detected. The return value is {@link JavaPathType#MODULES}
         * if the dependency is a modular JAR file or a directory containing module descriptor(s),
         * or {@link JavaPathType#CLASSES} otherwise. A JAR file without module descriptor but with
         * an "Automatic-Module-Name" manifest attribute is considered modular.
         */
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/CoreRealm.java

    /**
     * Access to core {@link ClassRealm}.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface CoreRealm {
    
        /**
         * Obtain the {@link ClassRealm} used for Maven Core.
         *
         * @return the class realm of core.
         */
        @Nonnull
        ClassRealm getRealm();
    
        /**
         * Shorthand method to obtain the {@link ClassWorld} used for Maven Core.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelVersionParser.java

    import org.apache.maven.api.VersionRange;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.services.VersionParserException;
    
    /**
     * Model builder specific version parser. It is intentionally not
     * {@link org.apache.maven.api.services.VersionParser} as this is not a service,
     * but at Maven runtime it MAY actually use that service.
     *
     * @since 4.0.0
     */
    public interface ModelVersionParser {
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

     * at run time or at test time.  For a given dependency, the scope is directly derived from the
     * {@link org.apache.maven.api.model.Dependency#getScope()} and will be used when using {@link PathScope}
     * and the {@link org.apache.maven.api.services.DependencyResolver}.
     *
     * @since 4.0.0
     * @see org.apache.maven.api.model.Dependency#getScope()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 3.7K bytes
    - Viewed (0)
Back to top