Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for samp (0.16 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RemoteSnapshotMetadataGenerator.java

             * processes one artifact at a time and hence cannot associate the artifacts from the same project to use the
             * same timestamp+buildno for the snapshot versions. Allowing the caller to pass in metadata from a previous
             * deployment allows to re-establish the association between the artifacts of the same project.
             */
            for (Metadata metadata : request.getMetadata()) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/configuration-management.apt

     the project level, and the user level. On the site level you can configure maven for all users
     utilizing the local installation, the group level allows configuration management for all the projects
     that belong to the same group, the project level allows configuration management at
     the project level, and the user level allows users to override settings on
     the site level, group level and project level.
    
    * Site configuration
    
    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)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProcessor.java

     *
     * This leads to a second side effect in that any @Inject request for just ModelProcessor in
     * the same injector is immediately matched to this explicit binding, which means extensions
     * cannot override this binding. This is because the lookup is always short-circuited in this
     * specific situation (plain @Inject request, and plain explicit binding for the same type.)
     *
     * The simplest solution is to use a custom @Named here so it isn't bound under the plain key.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  4. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      ---
      Getting to Plexus-configured Mojos
      ---
      John Casey
      ---
      2005-04-29
    
    Abstract
    
      We're moving toward integrating mojos as first-class plexus components, while
      at the same time avoiding introducing required plexus dependencies into the
      mojo development model.
    
      In order to really achieve this, we need mojo configurations (which are
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 30 15:20:35 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo/pom.xml

      <artifactId>test</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4193</name>
      <description>
        Test that multiple plugin repository declarations with the same id cause a validation error.
      </description>
    
      <pluginRepositories>
        <pluginRepository>
          <id>one</id>
          <url>https://repo1.maven.org/maven2</url>
        </pluginRepository>
        <pluginRepository>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/sub/pom.xml

        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child</artifactId>
    
      <name>Maven Integration Test :: MNG-3925</name>
      <description>
        Test that plugin executions (in the same phase) are properly ordered after inheritance/merge with
        parent executions.
      </description>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-exec-order/w-plugin-mgmt/pom.xml

      <artifactId>test</artifactId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-3887</name>
      <description>
        Test that multiple plugin executions bound to the same phase are executed in the order given by the POM.
      </description>
    
      <build>
        <!-- This project uses plugin management for the test plugin -->
        <pluginManagement>
          <plugins>
            <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

         * @param artifactId never {@code null}
         * @param version can be {@code null}
         * @return the matching model or {@code null}
         * @throws IllegalStateException if version was null and multiple modules share the same groupId + artifactId
         */
        public Model get(String groupId, String artifactId, String version) {
            return modelsByGa.getOrDefault(new GAKey(groupId, artifactId), Collections.emptySet()).stream()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    SelfDescribingValueI S sameInstance(T) - Static method in class org.hamcrest.core.IsSame Creates a matcher that matches only when the examined object is the same instance as the specified target object. sameInstance(T) - Static method in class org.hamcrest.CoreMatchers Creates a matcher that matches only when the examined object is the same instance as the specified target object. SelfDescribing - Interface in org.hamcrest The ability of an object to describe itself. SelfDescribingValue<T> - Class...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         */
        boolean isTopProject();
    
        /**
         * Returns a boolean indicating if the project is a root project,
         * meaning that the {@link #getRootDirectory()} and {@link #getBasedir()}
         * points to the same directory, and that either {@link Model#isRoot()}
         * is {@code true} or that {@code basedir} contains a {@code .mvn} child
         * directory.
         *
         * @return {@code true} if the project is the root project
    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)
Back to top