Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for classifier1 (0.07 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              <type>String</type>
              <defaultValue>jar</defaultValue>
            </field>
            <field>
              <name>classifier</name>
              <version>4.0.0+</version>
              <description>
                <![CDATA[
                The classifier of the dependency. It is appended to
                the filename after the version. This allows:
                <ul>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            if (src != null) {
                if (sourceDominant || target.getClassifier() == null) {
                    target.setClassifier(src);
                    target.setLocation("classifier", source.getLocation("classifier"));
                }
            }
        }
    
        protected void mergeDependency_Scope(
                Dependency target, Dependency source, boolean sourceDominant, Map<Object, Object> context) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
Back to top