Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for index (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            // if already there we remove it and add again
            int index = attachedArtifacts.indexOf(artifact);
            if (index >= 0) {
                LOGGER.warn("artifact '{}' already attached, replacing previous instance", artifact);
                attachedArtifacts.set(index, artifact);
            } else {
                attachedArtifacts.add(artifact);
            }
        }
    
        /**
    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)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("full-interpolation");
            for (int i = 0; i < 24; i++) {
                String index = ((i < 10) ? "0" : "") + i;
                assertEquals("PASSED", pom.getValue("properties/property" + index));
            }
        }
    
        @Test
        void testInterpolationWithBasedirAlignedDirectories() throws Exception {
    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)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                String prefix2,
                ModelBuilderRequest request) {
            Severity errOn31 = getSeverity(request, ModelBuilderRequest.VALIDATION_LEVEL_MAVEN_3_1);
    
            Map<String, Plugin> index = new HashMap<>();
    
            for (Plugin plugin : plugins) {
                if (plugin.getGroupId() == null
                        || (plugin.getGroupId() != null
    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