Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for hector (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

            String makeBehavior = request.getMakeBehavior();
            boolean makeBoth = MavenExecutionRequest.REACTOR_MAKE_BOTH.equals(makeBehavior);
    
            boolean makeUpstream = makeBoth || MavenExecutionRequest.REACTOR_MAKE_UPSTREAM.equals(makeBehavior);
            boolean makeDownstream = makeBoth || MavenExecutionRequest.REACTOR_MAKE_DOWNSTREAM.equals(makeBehavior);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    java.io.File basedir; protected String[] includes; protected String[] excludes; protected java.util.Vector filesIncluded; protected java.util.Vector filesNotIncluded; protected java.util.Vector filesExcluded; protected java.util.Vector dirsIncluded; protected java.util.Vector dirsNotIncluded; protected java.util.Vector dirsExcluded; protected java.util.Vector filesDeselected; protected java.util.Vector dirsDeselected; protected boolean haveSlowResults; protected boolean isCaseSensitive; private boolean...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 200.2K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java

    import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
    import org.apache.maven.repository.Proxy;
    
    /**
     * Abstraction of an artifact repository. Artifact repositories can be remote, local, or even build reactor or
     * IDE workspace.
     *
     * @deprecated Avoid use of this type, if you need access to local repository use repository system classes instead.
     */
    @Deprecated
    public interface ArtifactRepository {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Feb 23 17:14:45 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  4. maven-core/src/test/projects/lifecycle-listener/lifecycle-participant-reactor-dependency-injection/module-a/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>lifecycle-participant-reactor-dependency-injection</groupId>
        <artifactId>parent</artifactId>
        <version>1.0</version>
      </parent>
    
      <artifactId>module-a</artifactId>
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 29 12:40:19 GMT 2014
    - 257 bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    
    import org.apache.maven.api.model.Model;
    
    /**
     * Holds all Models that are known to the reactor. This allows the project builder to resolve imported Models from the
     * reactor when building another project's effective model.
     *
     */
    class ReactorModelPool {
        private final Map<GAKey, Set<Model>> modelsByGa = new ConcurrentHashMap<>();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Summarizes the result of a failed project build in the reactor.
     *
     */
    public class BuildFailure extends BuildSummary {
    
        /**
         * The cause of the build failure.
         */
        private final Throwable cause;
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/DuplicateProjectException.java

     */
    package org.apache.maven;
    
    import java.io.File;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    
    /**
     * Signals a collision of two or more projects with the same g:a:v during a reactor build.
     *
     */
    public class DuplicateProjectException extends MavenExecutionException {
    
        private Map<String, List<File>> collisions;
    
        /**
         * Creates a new exception with specified details.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import java.util.Objects;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Summarizes the result of a project build in the reactor.
     *
     */
    public abstract class BuildSummary {
    
        /**
         * The project being summarized.
         */
        private final MavenProject project;
    
        /**
         * The build time of the project in milliseconds.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2K bytes
    - Viewed (0)
  9. maven-core/src/test/projects/project-builder/mng-3023/dependency/pom.xml

        <artifactId>parent</artifactId>
        <version>1</version>
      </parent>
    
      <artifactId>dependency</artifactId>
    
      <name>Maven Integration Test :: MNG-3023 :: Dependency</name>
      <description>Test that reactor projects are included in dependency resolution.</description>
    
      <build>
        <outputDirectory>dependency-classes</outputDirectory>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 2.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import java.util.List;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Describes the interdependencies between projects in the reactor.
     *
     * @since 3.0-alpha
     */
    public interface ProjectDependencyGraph {
    
        /**
         * Gets all collected projects.
         *
         * @return All collected projects.
         *
         * @since 3.5.0
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
Back to top