Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for Rake (0.14 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/test/resources/projects/future-schema-model-version-pom.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
        <modelVersion>4.999.999</modelVersion>
        <!-- this should be a fake "future" version that only has modelVersion understood by us -->
        <coordinates>tests.project:future-model-version</coordinates>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Mon Jun 03 20:33:44 GMT 2019
    - 993 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. maven-core/src/site/apt/configuration-management.apt

     o ~/.m2 directory does not exist
     o ~/.m2/maven.properties does not exist
     o if they once existed but now to do not exist
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  6. maven-compat/src/test/resources/inheritance-repo/t04/maven-test/poms/t04-a-1.0.pom

      <groupId>maven-test</groupId>
      <artifactId>t04-a</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <repositories>
        <repository>
          <id>central</id>
          <name>Fake Maven Central Repository</name>
          <url>file://dummy</url>
        </repository>
      </repositories>
      <dependencies>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t04-b</artifactId>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 520 bytes
    - Viewed (0)
  7. maven-compat/src/test/resources/inheritance-repo/t09/maven-test/poms/t09-a-1.0.pom

      <groupId>maven-test</groupId>
      <artifactId>t09-a</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <repositories>
        <repository>
          <id>central</id>
          <name>Fake Maven Central Repository</name>
          <url>file://dummy</url>
        </repository>
      </repositories>
    
      <dependencies>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t09-b</artifactId>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 551 bytes
    - Viewed (0)
  8. maven-compat/src/test/resources/inheritance-repo/t05/maven-test/poms/t05-a-1.0.pom

      <groupId>maven-test</groupId>
      <artifactId>t05-a</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <repositories>
        <repository>
          <id>central</id>
          <name>Fake Maven Central Repository</name>
          <url>file://dummy</url>
        </repository>
      </repositories>
      <dependencies>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t05-b</artifactId>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 572 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top