Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for Make (0.18 sec)

  1. maven-core/plugin-manager.txt

    - we need to deal with plugins as core application logic which can also interact with plugins
    
    * Along with this comes the testing strategies that make this work
    * The repository model where plugins can be stored and cataloged
    * Bridging this into an OSGi system: if this could be done then we can basically take over p2
    
    TODO
    
    - dealing with processing of input and adapting GAVs before searching i.e. plugin groups in Maven and default searching
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  2. 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)
  3. apache-maven/src/assembly/shared/mvnvalidate

      link=`expr "$ls" : '.*-> \(.*\)$'`
      if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
      else
        PRG="`dirname "$PRG"`/$link"
      fi
    done
    
    saveddir=`pwd`
    
    MAVEN_HOME=`dirname "$PRG"`/..
    
    # make it fully qualified
    MAVEN_HOME=`cd "$MAVEN_HOME" && pwd`
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat May 23 07:59:32 GMT 2020
    - 418 bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        // ----------------------------------------------------------------------
        // Reactor Make Mode
        // ----------------------------------------------------------------------
    
        String REACTOR_MAKE_UPSTREAM = "make-upstream";
    
        String REACTOR_MAKE_DOWNSTREAM = "make-downstream";
    
        String REACTOR_MAKE_BOTH = "make-both";
    
        // ----------------------------------------------------------------------
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/internal/ProjectBuildListTest.java

                    is(greaterThanOrEqualTo(6)));
    
            final ProjectBuildList byTaskSegment = projectBuildList.getByTaskSegment(taskSegment);
            assertEquals(projectBuildList.size(), byTaskSegment.size()); // TODO Make multiple segments on projectBuildList
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleExecutionPlanCalculatorTest.java

                    session1, ProjectDependencyGraphStub.A, taskSegment2.getTasks());
            assertEquals(3, executionPlan2.size());
        }
    
        // Maybe also make one with LifeCycleTasks
    
        public static LifecycleExecutionPlanCalculator createExecutionPlaceCalculator(
                MojoDescriptorCreator mojoDescriptorCreator) throws ComponentLookupException {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  7. apache-maven/README.txt

        Unix-based operating systems (Linux, Solaris and Mac OS X)
          export PATH=/usr/local/apache-maven-4.x.y/bin:$PATH
        Windows
          set PATH="c:\program files\apache-maven-4.x.y\bin";%PATH%
    
      4) Make sure JAVA_HOME is set to the location of your JDK
    
      5) Run "mvn --version" to verify that it is correctly installed.
    
      For complete documentation, see https://maven.apache.org/download.html#Installation
    
      Licensing
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 13 20:21:20 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

         * For example, an artifact of type {@value org.apache.maven.api.Type#JAR} can be placed
         * either on the class-path or on the module-path. The project needs to make a choice
         * (possibly using heuristic rules), then to add the dependency in only one of the options
         * identified by {@link PathType}.</p>
         *
         * @return file paths to place on the different tool options
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/maven/conf/settings.xml

        </proxy>
        -->
      </proxies>
    
      <!-- servers
       | This is a list of authentication profiles, keyed by the server-id used within the system.
       | Authentication profiles can be used whenever maven must make a connection to a remote server.
       |-->
      <servers>
        <!-- server
         | Specifies the authentication information to use when connecting to a particular server, identified by
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  10. maven-core/lifecycle-executor.txt

    <configuration/> element and <parameters/> element. From these elements we need to make a component configuration for the MojoExecution. The actual DOM like structure we create is of type PlexusConfiguration and is the type we use with the ComponentConfigurator to initialize fields in a Plexus component. Typically this is done within Plexus with the configuration supplied with component configuration, but in Maven we take configuration values from the POM. So we have to use the ComponentConfigurator...
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 9.7K bytes
    - Viewed (0)
Back to top