Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for mailingLists (0.17 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/apache/1/apache-1.pom

      </distributionManagement>
      <mailingLists>
        <mailingList>
          <name>Apache Announce List</name>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive>
        </mailingList>
      </mailingLists>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom

      <inceptionYear>2001</inceptionYear>
      <mailingLists>
        <mailingList>
          <name>Commons Dev List</name>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=******@****.***</archive>
        </mailingList>
        <mailingList>
          <name>Commons User List</name>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

        </notifiers>
      </ciManagement>
      <mailingLists>
        <mailingList>
          <name>Maven User List</name>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
        </mailingList>
        <mailingList>
          <name>Maven Developer List</name>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/FileToRawModelMerger.java

                Model.Builder builder, Model target, Model source, boolean sourceDominant, Map<Object, Object> context) {
            // don't merge
        }
    
        @Override
        protected void mergeModel_MailingLists(
                Model.Builder builder, Model target, Model source, boolean sourceDominant, Map<Object, Object> context) {
            // don't merge
        }
    
        @Override
        protected void mergeModel_Profiles(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(1, ((List<?>) pom.getValue("mailingLists")).size());
            assertEquals("project-mailing-list", pom.getValue("mailingLists[1]/name"));
            assertEquals("subscribe@", pom.getValue("mailingLists[1]/subscribe"));
            assertEquals("unsubscribe@", pom.getValue("mailingLists[1]/unsubscribe"));
            assertEquals("post@", pom.getValue("mailingLists[1]/post"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

        }
    
        @Override
        protected void mergeModel_MailingLists(
                Model.Builder builder, Model target, Model source, boolean sourceDominant, Map<Object, Object> context) {
            if (target.getMailingLists().isEmpty()) {
                builder.mailingLists(source.getMailingLists());
            }
        }
    
        @Override
        protected void mergeModelBase_Modules(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  7. 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);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
            <field xdoc.separator="blank">
              <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>
    
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top