Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for typeID (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java

         * @param model the model, must not be {@code null}
         * @param type the type
         * @param logger the logger, must not be {@code null}
         */
        protected DefaultToolchain(ToolchainModel model, String type, Logger logger) {
            this(model, logger);
            this.type = type;
        }
    
        @Override
        public final String getType() {
            return type != null ? type : model.getType();
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java

                    assertEquals(handler.getExtension(), extension, type + " extension");
                    // Packaging/Directory is Maven1 remnant!!!
                    // assertEquals(handler.getPackaging(), packaging, type + " packaging");
                    assertEquals(handler.getClassifier(), classifier, type + " classifier");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

              <version>1.0.0</version>
              <type>String</type>
              <description>The ID of this lifecycle, for identification in the mojo descriptor.</description>
            </field>
            <field>
              <name>phases</name>
              <version>1.0.0</version>
              <description>The phase mappings for this lifecycle.</description>
              <association>
                <type>Phase</type>
                <multiplicity>*</multiplicity>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/artifact/InvalidArtifactRTException.java

            this.groupId = groupId;
            this.artifactId = artifactId;
            this.version = version;
            this.type = type;
            this.baseMessage = message;
        }
    
        public InvalidArtifactRTException(
                String groupId, String artifactId, String version, String type, String message, Throwable cause) {
            super(cause);
    
            this.groupId = groupId;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactFactory.java

            ArtifactType type = null;
            if (request.getType() != null) {
                type = session.getSession().getArtifactTypeRegistry().get(request.getType());
            }
            String str1 = request.getClassifier();
            String classifier =
                    str1 != null && !str1.isEmpty() ? request.getClassifier() : type != null ? type.getClassifier() : null;
            String str = request.getExtension();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainTest.java

        void testGetType() {
            ToolchainModel model = new ToolchainModel();
            DefaultToolchain toolchain = newDefaultToolchain(model, "TYPE");
            assertEquals("TYPE", toolchain.getType());
    
            model.setType("MODEL_TYPE");
            toolchain = newDefaultToolchain(model);
            assertEquals("MODEL_TYPE", toolchain.getType());
        }
    
        @Test
        void testGetLogger() {
            ToolchainModel model = new ToolchainModel();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  7. maven-compat/src/test/resources/inheritance-repo/t05/maven-test/poms/t05-b-2.0.pom

          <groupId>maven-test</groupId>
          <artifactId>t05-c</artifactId>
          <version>1.0</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t05-d</artifactId>
          <version>1.1</version>
          <type>jar</type>
          <scope>compile</scope>
          <optional>false</optional>
        </dependency>
      </dependencies>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 622 bytes
    - Viewed (0)
  8. maven-compat/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-b-1.1.pom

          <groupId>maven-test</groupId>
          <artifactId>t07-c</artifactId>
          <version>1.0</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t07-d</artifactId>
          <version>1.1</version>
          <type>jar</type>
          <scope>compile</scope>
          <optional>true</optional>
        </dependency>
      </dependencies>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 621 bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java

        }
    
        /**
         * Returns the request type.
         *
         * @return Returns the request type. The Request type is one of
         *         <code>TransferEvent.REQUEST_GET</code> or <code>TransferEvent.REQUEST_PUT</code>
         */
        public int getRequestType() {
            return requestType;
        }
    
        /**
         * Sets the request type
         *
         * @param requestType The requestType to set.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependency.java

            return dependency.getArtifact().getExtension();
        }
    
        @Override
        public Type getType() {
            String type = dependency
                    .getArtifact()
                    .getProperty(ArtifactProperties.TYPE, dependency.getArtifact().getExtension());
            return session.requireType(type);
        }
    
        @Override
        public boolean isSnapshot() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
Back to top