Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 292 for type (0.23 sec)

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

     * to the build path.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Type extends ExtensibleEnum {
        /**
         * Artifact type name for a POM file.
         */
        String POM = "pom";
    
        /**
         * Artifact type name for a BOM file.
         */
        String BOM = "bom";
    
        /**
         * Artifact type name for a JAR file that can be placed either on the class-path or on the module-path.
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Mar 29 09:32:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

              </description>
              <type>String</type>
            </field>
            <field>
              <name>properties</name>
              <version>3.0.0+</version>
              <description>Properties about the contributor, such as an instant messenger handle.</description>
              <type>Properties</type>
              <association xml.mapStyle="inline">
                <type>String</type>
                <multiplicity>*</multiplicity>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 115.5K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/artifact-handlers.apt

    | <<<war>>>          |               | <= type>   | <= type>   | java      |                     | <<<true>>>            |
    *--------------------+---------------+------------+------------+-----------+---------------------+-----------------------+
    | <<<ear>>>          |               | <= type>   | <= type>   | java      |                     | <<<true>>>            |
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Jan 08 15:03:57 GMT 2022
    - 4.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactoryRequest.java

            public ArtifactFactoryRequestBuilder extension(String extension) {
                this.extension = extension;
                return this;
            }
    
            public ArtifactFactoryRequestBuilder type(String type) {
                this.type = type;
                return this;
            }
    
            public ArtifactFactoryRequestBuilder coordinateString(String coordinateString) {
                this.coordinateString = coordinateString;
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 18 10:30:20 GMT 2023
    - 7.4K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultTypeProvider.java

        @Override
        public Collection<Type> provides() {
            return (Collection) types();
        }
    
        public Collection<DefaultType> types() {
            return Arrays.asList(
                    // Maven types
                    new DefaultType(Type.POM, Language.NONE, "pom", null, false),
                    new DefaultType(Type.BOM, Language.NONE, "pom", null, false),
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/TypeRegistry.java

    import org.apache.maven.api.Type;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Access to {@link Type} registry.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface TypeRegistry extends ExtensibleEnumRegistry<Type> {
    
        /**
         * Obtain the {@link Type} from the specified {@code id}.
         * If no type is known for {@code id}, the registry will
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java

         */
        @Deprecated
        public DefaultArtifactHandler() {
            this.type = null;
        }
    
        public DefaultArtifactHandler(final String type) {
            this(type, null, null, null, null, false, null, false);
        }
    
        @SuppressWarnings("checkstyle:ParameterNumber")
        public DefaultArtifactHandler(
                final String type,
                final String extension,
                final String classifier,
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/types/BomTypeProvider.java

        private final Type type;
    
        public BomTypeProvider() {
            this.type = new DefaultType(NAME, Type.LANGUAGE_NONE, "pom", null, new DefaultDependencyProperties());
        }
    
        @Override
        public Type get() {
            return type;
        }
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/impl/types/EarTypeProvider.java

    @Named(EarTypeProvider.NAME)
    @Singleton
    public class EarTypeProvider implements Provider<Type> {
        public static final String NAME = "ear";
    
        private final Type type;
    
        public EarTypeProvider() {
            this.type = new DefaultType(
                    NAME,
                    Type.LANGUAGE_JAVA,
                    "ear",
                    null,
                    new DefaultDependencyProperties(DependencyProperties.FLAG_INCLUDES_DEPENDENCIES));
        }
    
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/types/ParTypeProvider.java

    @Named(ParTypeProvider.NAME)
    @Singleton
    public class ParTypeProvider implements Provider<Type> {
        public static final String NAME = "par";
    
        private final Type type;
    
        public ParTypeProvider() {
            this.type = new DefaultType(
                    NAME,
                    Type.LANGUAGE_JAVA,
                    "par",
                    null,
                    new DefaultDependencyProperties(DependencyProperties.FLAG_INCLUDES_DEPENDENCIES));
        }
    
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.6K bytes
    - Viewed (0)
Back to top