Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for Clements (0.28 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * Returns the option followed by a string representation of the given path elements.
         * For example, if this type is {@link #MODULES}, then the option is {@code "--module-path"}
         * followed by the specified path elements.
         *
         * @param paths the path to format as a tool option
         * @return the option associated to this path type followed by the given path elements,
         *         or an empty string if there is no path element
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * Returns the project artifacts as immutable list. Elements are the project POM artifact and the artifact
         * produced by this project build, if applicable. Hence, the returned list may have one or two elements
         * (never less than 1, never more than 2), depending on project packaging.
         * <p>
         * The list's first element is ALWAYS the project POM artifact. Presence of second element in the list depends
         * solely on the project packaging.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

            dependencies = new LinkedHashMap<>(count + count / 3);
        }
    
        /**
         * Adds the given path element to the specified type of path.
         *
         * @param type the type of path (class-path, module-path, …)
         * @param path the path element to add
         */
        private void addPathElement(PathType type, Path path) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * The head of returned list is result of {@link Project#getArtifacts()} method, so same applies here: the list can have
         * minimum of one element. The maximum number of elements is in turn dependent on build configuration and lifecycle
         * phase when this method was invoked (i.e. is javadoc jar built and attached, is sources jar built attached, are
         * all the artifact signed, etc.).
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Information about the modules contained in a path element.
     * The path element may be a JAR file or a directory. Directories may use either package hierarchy
     * or module hierarchy, but not module source hierarchy. The latter is excluded because this class
     * is for path elements of compiled codes.
     */
    class PathModularization {
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-config-attributes/wo-plugin-mgmt/pom.xml

      <artifactId>test1</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4053</name>
      <description>
        Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
        no plugin management is used.
      </description>
    
      <build>
        <!-- NOTE: This test does not use plugin management for the IT plugin -->
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.8K bytes
    - Viewed (0)
  7. maven-core/src/test/projects/lifecycle-executor/project-with-additional-lifecycle-elements/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>org.apache.maven.lifecycle.test</groupId>
      <artifactId>project-with-additional-lifecycle-elements</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <name>project-with-additional-lifecycle-elements</name>
      <url>http://maven.apache.org</url>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 2.4K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                    for (Plugin element : tgt) {
                        Object key = getPluginKey().apply(element);
                        Plugin existing = master.get(key);
                        if (existing != null) {
                            element = mergePlugin(element, existing, sourceDominant, context);
    
                            master.put(key, element);
    
                            if (!pending.isEmpty()) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

            File pom = getProject("project-with-additional-lifecycle-elements");
            MavenSession session = createMavenSession(pom);
            assertEquals(
                    "project-with-additional-lifecycle-elements",
                    session.getCurrentProject().getArtifactId());
            assertEquals("1.0", session.getCurrentProject().getVersion());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPluginManagementInjector.java

                    for (Plugin element : src) {
                        Object key = getPluginKey().apply(element);
                        managedPlugins.put(key, element);
                    }
    
                    List<Plugin> newPlugins = new ArrayList<>();
                    for (Plugin element : target.getPlugins()) {
                        Object key = getPluginKey().apply(element);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.8K bytes
    - Viewed (0)
Back to top