Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 263 for Dadd (0.25 sec)

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

        List<String> getActiveProfileIds();
    
        void setInactiveProfileIds(List<String> inactiveProfileIds);
    
        List<String> getInactiveProfileIds();
    
        /**
         * Add a {@link org.apache.maven.model.Profile} that has come from an external source. This may be from a custom
         * configuration like the MavenCLI settings.xml file, or from a custom dialog in an IDE integration like M2Eclipse.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            }
    
            private ArtifactSpec addDependency(ArtifactSpec dep) throws InvalidVersionSpecificationException {
                if (dep != null) {
                    dependencies.add(dep.artifact);
                }
                return dep;
            }
    
            private ArtifactSpec addDependency(String id, String version, String scope, boolean optional)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java

                } else {
                    pomHash = 0;
                }
                this.resolveManagedVersions = resolveManagedVersions;
                this.repositories.add(localRepository);
                this.repositories.addAll(remoteRepositories);
    
                int hash = 17;
                hash = hash * 31 + artifactHashCode(artifact);
                hash = hash * 31 + (resolveManagedVersions ? 1 : 2);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                                defaultValue != null ? Collections.singletonMap("default-value", defaultValue) : null,
                                null,
                                null);
                        children.add(e);
                    }
                }
            }
    
            XmlNodeImpl dom = new XmlNodeImpl("configuration", null, null, children, null);
            return new org.codehaus.plexus.util.xml.Xpp3Dom(dom);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

     * The session to install / deploy / resolve artifacts and dependencies.
     *
     * TODO: move the remote repositories in the requests (plugins will need to access this list somehow)
     * TODO: add request trace so that requests can be linked together and through the resolver
     * TODO: add a Request interface holding session + parent request
     *
     * @since 4.0.0
     */
    @Experimental
    @ThreadSafe
    public interface Session {
    
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

            this.mojoExecution = mojoExecution;
            this.properties = new Properties();
            this.project = session.getCurrentProject();
    
            //
            // Maven4: We may want to evaluate how this is used but we add these separate as the
            // getExecutionProperties is deprecated in MavenSession.
            //
            this.properties.putAll(session.getUserProperties());
            this.properties.putAll(session.getSystemProperties());
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Oct 17 17:55:08 GMT 2023
    - 16.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    components; public void ComponentList(String, java.util.List); public int size(); public boolean isEmpty(); public boolean contains(Object); public java.util.Iterator iterator(); public Object[] toArray(); public Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int, java.util.Collection); public boolean removeAll(java.util.Collection); public boolean ...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 205.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    components; public void ComponentList(String, java.util.List); public int size(); public boolean isEmpty(); public boolean contains(Object); public java.util.Iterator iterator(); public Object[] toArray(); public Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int, java.util.Collection); public boolean removeAll(java.util.Collection); public boolean ...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 233.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    components; public void ComponentList(String, java.util.List); public int size(); public boolean isEmpty(); public boolean contains(Object); public java.util.Iterator iterator(); public Object[] toArray(); public Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int, java.util.Collection); public boolean removeAll(java.util.Collection); public boolean ...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 233.3K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

      KIND, either express or implied.  See the License for the
      specific language governing permissions and limitations
      under the License.
    -->
    
    <!--
      | Improvements:
      |
      | o add specification element to a field, this would be more a technical description of
      |   what is allowed in the field.
      |
      | o validators: there could be several levels of validation. Simple type validation could
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top