Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for type (0.03 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinateFactoryRequest.java

                this.extension = extension;
                return this;
            }
    
            public DependencyCoordinateFactoryRequestBuilder type(String type) {
                this.type = type;
                return this;
            }
    
            public DependencyCoordinateFactoryRequestBuilder coordinateString(String coordinateString) {
                this.coordinateString = coordinateString;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

         * @param <T> the type of the object associated to this key
         */
        final class Key<T> {
    
            private final Class<T> type;
            private final Object id;
    
            private Key(Class<T> type, Object id) {
                this.type = type;
                this.id = id;
            }
    
            public Class<T> type() {
                return type;
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Resolution.java

     * field, the injected field type and the {@link #requestType()}.
     * <p>
     * If the {@code requestType} is not set explicitly, it will be inferred
     * from the {@code pathScope} and the injected field type. If the type
     * is {@link org.apache.maven.api.Node Node} and {@code pathScope == ""},
     * then the dependencies will be <i>collected</i>.
     * If the type is {@link org.apache.maven.api.Node Node} or
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

     * with the dependency collection or resolution result for the project.
     * </p>
     *
     * @since 4.0.0
     */
    @Experimental
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface Mojo {
        /**
         * goal name (required).
         * @return the goal name
         */
        @Nonnull
        String name();
    
        /**
         * default phase to bind your mojo.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyCoordinate.java

    /**
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface DependencyCoordinate extends ArtifactCoordinate {
        /**
         * The type of the artifact.
         *
         * @return the type
         */
        @Nonnull
        Type getType();
    
        @Nonnull
        DependencyScope getScope();
    
        @Nullable
        Boolean getOptional();
    
        @Nonnull
        Collection<Exclusion> getExclusions();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Toolchain interface.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface Toolchain {
        /**
         * Gets the type of toolchain.
         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactory.java

                String artifactId,
                String version,
                String classifier,
                String extension,
                String type) {
            return create(ArtifactCoordinateFactoryRequest.build(
                    session, groupId, artifactId, version, classifier, extension, type));
        }
    
        @Nonnull
        default ArtifactCoordinate create(@Nonnull Session session, Artifact artifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 10:30:20 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * @param classifier the artifact classifier, or {@code null} is unspecified
         * @param extension the artifact extension, or {@code null} is unspecified
         * @param type the artifact type, or {@code null} is unspecified
         * @return coordinate used to point to the artifact
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    when it starts in an interactive mode:
    
        Gnomovision version 69, Copyright (C) year name of author
        Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type
        `show w'. This is free software, and you are welcome to redistribute
        it under certain conditions; type `show c' for details.
    
    The hypothetical commands `show w' and `show c' should show the
    appropriate parts of the General Public License. Of course, the commands
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top