Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for exceptions (0.17 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("b", pom.getValue("build/plugins[1]/executions[1]/goals[1]"));
            assertEquals("a", pom.getValue("build/plugins[1]/executions[1]/goals[2]"));
            assertEquals("d", pom.getValue("build/plugins[1]/executions[1]/goals[3]"));
            assertEquals("c", pom.getValue("build/plugins[1]/executions[1]/goals[4]"));
            assertEquals("e", pom.getValue("build/plugins[1]/executions[1]/goals[5]"));
    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)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    interpolatedModel = interpolatedModel.withParent(
                            interpolatedModel.getParent().withVersion(interpolated));
                } catch (Exception e) {
                    problems.add(
                            Severity.ERROR,
                            ModelProblem.Version.BASE,
                            "Failed to interpolate field: "
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        /**
         * Add or replace an artifact. This method is now deprecated. Use the @{MavenProjectHelper} to attach artifacts to a
         * project. In spite of the 'throws' declaration on this API, this method has never thrown an exception since Maven
         * 3.0.x. Historically, it logged and ignored a second addition of the same g/a/v/c/t. Now it replaces the file for
    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)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    }
                    if (str != null) {
                        parallelism = Integer.parseInt(str);
                    }
                } catch (Exception e) {
                    // ignore
                }
                return Math.max(1, Math.min(parallelism, Runtime.getRuntime().availableProcessors()));
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                problems,
                                Severity.ERROR,
                                Version.V20,
                                prefix + prefix2 + "[" + plugin.getKey() + "].executions.execution.id",
                                null,
                                "must be unique but found duplicate execution with id " + exec.getId(),
                                exec);
                    }
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
Back to top