Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for MailingList (0.04 sec)

  1. compat/maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-child.xml

      <version>12-SNAPSHOT</version>
    
      <mailingLists>
        <!--mailingList> MNG-3124: no way to add a list to parent content, only full override
          <name>child</name>
          <post>******@****.***</post>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
        </mailingList-->
      </mailingLists>
    
      <build>
        <plugins>
          <plugin>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-parent.xml

      <url>http://www.apache.org/</url>
    
      <mailingLists>
        <mailingList>
          <name>parent</name>
          <post>******@****.***</post>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
        </mailingList>
      </mailingLists>
    
      <build>
        <plugins>
          <plugin>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

                return getLicenseKey(license);
            }
        }
    
        /**
         * KeyComputer for MailingList
         */
        private class MailingListKeyComputer implements KeyComputer<MailingList> {
            @Override
            public Object key(MailingList mailingList) {
                return getMailingListKey(mailingList);
            }
        }
    
        /**
         * KeyComputer for Developer
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public void setMailingLists(List<MailingList> mailingLists) {
            getModel().setMailingLists(mailingLists);
        }
    
        public List<MailingList> getMailingLists() {
            return getModel().getMailingLists();
        }
    
        public void addMailingList(MailingList mailingList) {
            getModel().addMailingList(mailingList);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

              <name>mailingLists</name>
              <version>3.0.0+</version>
              <description>Contains information about a project's mailing lists.</description>
              <association>
                <type>MailingList</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
    
            <!-- ====================================================================== -->
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
Back to top