Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for niddle (0.16 sec)

  1. maven-core/src/site/apt/index.apt

       * known limitations are notably that:
    
         1. plugin goal execution in a child is usually simply appended (at end): you can't try to insert in the middle of pre-existing inherited executions,
    
         2. append happens at plugin level first, then goal level, independently from phases.
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jun 14 05:48:39 GMT 2023
    - 5.3K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

            initRepoSession(configuration);
    
            return projectBuilder.build(pom, allowStub, configuration).getProject();
        }
    
        /**
         * Check that we can build ok from the middle pom of a (parent,child,grandchild) hierarchy
         *
         * @throws Exception in case of issue
         */
        @Test
        void testBuildFromMiddlePom() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 16.5K bytes
    - Viewed (0)
  3. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

         */
        @Test
        void testMng5568() {
            String a = "6.1.0";
            String b = "6.1.0rc3";
            String c = "6.1H.5-beta"; // this is the unusual version string, with 'H' in the middle
    
            checkVersionsOrder(b, a); // classical
            checkVersionsOrder(b, c); // now b < c, but before MNG-5568, we had b > c
            checkVersionsOrder(a, c);
        }
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 06:39:47 GMT 2024
    - 14K bytes
    - Viewed (0)
Back to top