Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for fail (0.15 sec)

  1. maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
          <otherArchives>
            <otherArchive>http://www.mail-archive.com/******@****.***/</otherArchive>
            <otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml

      <mailingLists>
        <mailingList>
          <name>project-mailing-list</name>
          <subscribe>subscribe@</subscribe>
          <unsubscribe>unsubscribe@</unsubscribe>
          <post>post@</post>
          <archive>mail-archive</archive>
          <otherArchives>
            <otherArchive>other-archive</otherArchive>
          </otherArchives>
        </mailingList>
      </mailingLists>
    
      <prerequisites>
        <maven>2.0.1</maven>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.8K bytes
    - Viewed (0)
  3. guava-gwt/pom.xml

                the modules that the test module classes use, so we get errors.
    
                The good news is that, despite ignoring errors here, GWT does fail if any errors affect
                classes that are actually used in the module under test.
    
                One way to eliminate the warnings is to make base.testModule include the not really
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 15:00:55 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/micromailer/pom.xml

          <artifactId>velocity-engine-core</artifactId>
          <version>2.3</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
    
        <!-- Mail sending -->
        <dependency>
          <groupId>javax.mail</groupId>
          <artifactId>mail</artifactId>
          <version>1.4</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
    
        <!-- Testing -->
        <dependency>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/parent-pom-packaging/sub/pom.xml

      <artifactId>test</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4283</name>
      <description>
        Test that the model builder fails when a parent POM has not "pom" packaging.
      </description>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml

      <mailingLists>
        <mailingList>
          <name>project-mailing-list</name>
          <subscribe>subscribe@</subscribe>
          <unsubscribe>unsubscribe@</unsubscribe>
          <post>post@</post>
          <archive>mail-archive</archive>
          <otherArchives>
            <otherArchive>other-archive</otherArchive>
          </otherArchives>
        </mailingList>
      </mailingLists>
    
      <prerequisites>
        <maven>2.0.1</maven>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
          <otherArchives>
            <otherArchive>http://www.mail-archive.com/******@****.***/</otherArchive>
            <otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Sep 11 08:52:20 GMT 2021
    - 22.4K bytes
    - Viewed (0)
  8. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
          <otherArchives>
            <otherArchive>http://www.mail-archive.com/******@****.***/</otherArchive>
            <otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  9. pom.xml

    			<exclusions>
    				<exclusion>
    					<groupId>com.github.stephenc.jcip</groupId>
    					<artifactId>jcip-annotations</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>com.sun.mail</groupId>
    					<artifactId>javax.mail</artifactId>
    				</exclusion>
    			</exclusions>
    		</dependency>
    		<dependency>
    			<groupId>io.minio</groupId>
    			<artifactId>minio</artifactId>
    			<version>${minio.version}</version>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Apr 14 04:03:33 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/parent-pom-packaging/pom.xml

      <!-- NOTE: Any packaging other than "pom" must be rejected for a parent POM -->
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4283</name>
      <description>
        Test that the model builder fails when a parent POM has not "pom" packaging.
      </description>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.2K bytes
    - Viewed (0)
Back to top