Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Mayers (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/Maven3CompatDependenciesValidator.java

    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Detects Maven3 plugins using maven-compat Maven2 compatibility layer.
     *
     * @since 3.9.3
     */
    @Singleton
    @Named
    class Maven3CompatDependenciesValidator extends AbstractMavenPluginDependenciesValidator {
    
        @Inject
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 09:51:56 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml

      <version>1.0-SNAPSHOT</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4116</name>
      <description>
        Test that the project builder does not decode URLs (which must be done by the transport layer instead).
      </description>
    
      <!-- some URLs using percent-encoded characters -->
      <url>https://maven.apache.org/spacy%20path</url>
      <scm>
        <connection>scm:svn:svn+ssh://svn.apache.org/spacy%20path</connection>
    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)
  3. maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                    .setGoals(Arrays.asList("package"));
    
            if (pom != null) {
                request.setMultiModuleProjectDirectory(pom.getParentFile());
            }
    
            return request;
        }
    
        // layer the creation of a project builder configuration with a request, but this will need to be
        // a Maven subclass because we don't want to couple maven to the project builder which we need to
        // separate.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  4. maven-compat/pom.xml

        <version>4.0.0-beta-1-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-compat</artifactId>
    
      <name>Maven Compat (deprecated)</name>
      <description>Deprecated Maven2 classes maintained as compatibility layer.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-model</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

            if (pom != null) {
                request.setMultiModuleProjectDirectory(pom.getParentFile());
            }
    
            return request;
        }
    
        // layer the creation of a project builder configuration with a request, but this will need to be
        // a Maven subclass because we don't want to couple maven to the project builder which we need to
        // separate.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 11.7K bytes
    - Viewed (1)
  6. maven-compat/src/site/apt/index.apt

    ~~ under the License.
    
     -----
     Introduction
     -----
     Hervé Boutemy
     -----
     2016-05-29
     -----
    
    Maven Compat
    
     Maven2 classes maintained as compatibility layer for plugins that need to keep Maven2 compatibility.
    
     Plugins should avoid these classes and be updated to use only Maven3 dependencies (and require Maven3): see
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 24 22:50:10 GMT 2017
    - 1.3K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

                dependency mechanism</a>. The default scope is {@code compile}.
                ]]>
              </description>
              <type>String</type>
              <!-- This default has to be enforced at the maven-artifact layer, to allow
                | injection of defaults from <dependencyManagement/>.
                | TODO: how can we document it?
                |-->
              <!-- defaultValue>compile</defaultValue -->
            </field>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  8. api/maven-api-settings/src/main/mdo/settings.mdo

              <type>String</type>
            </field>
            <field>
              <name>configuration</name>
              <type>DOM</type>
              <description>
                Extra configuration for the transport layer.
              </description>
            </field>
          </fields>
        </class>
        <class>
          <name>Mirror</name>
          <version>1.0.0+</version>
          <superClass>IdentifiableBase</superClass>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
Back to top