Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for mailingList (0.1 sec)

  1. compat/maven-model/src/test/java/org/apache/maven/model/MailingListTest.java

    /**
     * Tests {@code MailingList}.
     *
     */
    class MailingListTest {
    
        @Test
        void testHashCodeNullSafe() {
            new MailingList().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new MailingList().equals(null));
    
            new MailingList().equals(new MailingList());
        }
    
        @Test
        void testEqualsIdentity() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. compat/maven-compat/src/test/resources/inheritance-repo/t00/maven/poms/p2-1.0.pom

      <modelVersion>4.0.0</modelVersion>
      <groupId>maven</groupId>
      <artifactId>p2</artifactId>
      <packaging>pom</packaging>
      <name>p2</name>
      <version>1.0</version>
      <mailingLists>
        <mailingList>
          <name>mailing-list</name>
        </mailingList>
      </mailingLists>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 401 bytes
    - Viewed (0)
  3. 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. compat/maven-compat/src/test/resources/inheritance-repo/t02/p0/p1/p2/pom.xml

      <groupId>maven.t02</groupId>
      <artifactId>p2</artifactId>
      <packaging>pom</packaging>
      <name>p2</name>
      <version>1.0</version>
      <mailingLists>
        <mailingList>
          <name>mailing-list</name>
        </mailingList>
      </mailingLists>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java

        @Test
        public void mergeSameMailingLists()
        {
            MailingList mailingList = new MailingList();
            mailingList.setName( "name" );
    
            Model target = new Model();
            target.setMailingLists( Arrays.asList( mailingList ) );
    
            Model source = new Model();
            source.setMailingLists( Arrays.asList( mailingList ) );
    
            modelMerger.merge( target, source, true, null );
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-expected.xml

      <url>http://www.apache.org/child/</url><!-- child's artifactId appended to parent url -->
    
      <mailingLists>
        <mailingList>
          <name>parent</name>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
        </mailingList>
      </mailingLists>
    
      <build>
        <plugins>
          <plugin>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K 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>
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top