Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ProjectBuildingResultWithLocationAssert (0.13 sec)

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

     */
    class ProjectBuildingResultWithLocationAssert {
        private final ProjectBuildingResult actual;
    
        ProjectBuildingResultWithLocationAssert(ProjectBuildingResult actual) {
            this.actual = actual;
        }
    
        public static ProjectBuildingResultWithLocationAssert assertThat(ProjectBuildingResult actual) {
            return new ProjectBuildingResultWithLocationAssert(actual);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

                    .hasProblemMessage(
                            "'dependencies.dependency.version' for groupId='org.apache.maven.its', artifactId='a', type='jar' is missing");
            ProjectBuildingResultWithLocationAssert.assertThat(e.getResults().get(0))
                    .hasLocation(5, 9);
        }
    
        @Test
        void testResolveDependencies() throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 17.6K bytes
    - Viewed (0)
Back to top