Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Truong (0.14 sec)

  1. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            System.out.println("Result: " + depResults);
    
            assertNotNull(depResults);
            assertEquals(1, depResults.size());
            assertSame(depArtifact, depResults.get(0), "dependency artifact is wrong.");
        }
    
        @Test
        void testPluginArtifactMapExpressionReference() throws Exception {
            MojoExecution exec = newMojoExecution();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

                    // because it wasn't deployed, or it was deployed in the wrong place.
    
                    synchronized (result) {
                        result.addMissingArtifact(artifact);
                    }
                } catch (ArtifactResolutionException e) {
                    // This is really a wagon TransferFailedException so something went wrong after we successfully
                    // retrieved the metadata.
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 24.8K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/offline-mode.apt

        <<online>> status, or else doesn't care.
    
      * Otherwise, don't bind the mojo. Log a debug message to indicate that it is
        sensitive the online state of the application, and that this state is
        currently wrong for execution.
    
        <<NOTE:>> Do we want to fail when we cannot bind a mojo to the lifecycle
        because of offline/online status? That would probably indicate that the user
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                            .resumeFrom(MODULE_B)
                            .inactiveRequiredProjects(MODULE_B)
                            .expectResult(MODULE_C_2, INDEPENDENT_MODULE),
                    scenario("Selected projects in wrong order are resumed correctly in order")
                            .activeRequiredProjects(MODULE_C_2, MODULE_B, MODULE_A)
                            .resumeFrom(MODULE_B)
                            .expectResult(MODULE_B, MODULE_C_2),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 27.8K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         * matching mirror will pass through unchanged. Note: This method must be called before
         * {@link #injectAuthentication(List, List)} or the repositories will end up with the wrong credentials.
         *
         * @param repositories The repositories into which to inject the mirror information, may be {@code null}.
         * @param mirrors The available mirrors, may be {@code null}.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - plugin dependency metadata retrieval problem
    - plugin configuration problem
    - plugin execution failure due to something that is know to possibly go wrong (like compilation failure)
    - plugin execution error due to something that is not expected to go wrong (the compiler executable missing)
    - asking to use a plugin for which you do not have a version defined - tools to easily select versions
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java

                        "includesDependencies",
                        ""
                    };
    
                    int i = 0;
                    for (String col : cols) {
                        assertEquals(expected[i++], col.trim(), "Wrong column header");
                    }
                } else if (line.startsWith("|")) {
                    String[] cols = line.split("\\|");
    
                    String type = trimApt(cols[1]);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/graph/ProjectSelectorTest.java

            assertThat(baseDirectoryFromRequest, notNullValue());
            assertThat(baseDirectoryFromRequest.getPath(), is(new File("path/to/file").getPath()));
        }
    
        @ParameterizedTest
        @ValueSource(strings = {":wrong-selector", "wrong-selector"})
        @EmptySource
        void isMatchingProjectNoMatchOnSelectorReturnsFalse(String selector) {
            final boolean result = sut.isMatchingProject(createMavenProject("maven-core"), selector, null);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 8.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                /*
                 * This logic (using filesystem, against wanted independence from the user environment) exists only for the
                 * sake of backward-compat with 2.x (MNG-5000). In general, it is wrong to
                 * base URL inheritance on the module directory names as this information is unavailable for POMs in the
                 * repository. In other words, modules where artifactId != moduleDirName will see different effective URLs
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.8K bytes
    - Viewed (0)
Back to top