Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for element (0.19 sec)

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

        /**
         * Returns a filtered list of classpath elements. This method is invoked when the caller
         * requested that all dependencies are placed on the classpath, with no module-path element.
         *
         * @param scopeFilter a filter returning {@code true} for the artifact scopes to accept.
         * @param includeTestDir whether to include the test directory in the classpath elements.
         * @return paths of all artifacts placed on the classpath.
    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

            assertEquals(expected, pom.getValue(expression));
        }
    
        private static String createPath(List<String> elements) {
            StringBuilder buffer = new StringBuilder(256);
            for (String s : elements) {
                buffer.append(s).append(File.separator);
            }
            return buffer.toString().substring(0, buffer.toString().length() - 1);
        }
    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

                            Version.BASE,
                            "parent.artifactId",
                            null,
                            "must be changed"
                                    + ", the parent element cannot have the same groupId:artifactId as the project.",
                            parent);
                }
    
                if (equals("LATEST", parent.getVersion()) || equals("RELEASE", parent.getVersion())) {
    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