Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 116 for checks (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                            break;
                        }
                    }
                    // check for exact match
                    else if (repo.equals(originalId)) {
                        result = true;
                        break;
                    }
                    // check for external:*
                    else if (EXTERNAL_WILDCARD.equals(repo) && isExternalRepo(originalRepository)) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginDependenciesValidator.java

    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Service responsible for validating plugin dependencies.
     *
     * @since 3.9.3
     */
    interface MavenPluginDependenciesValidator {
        /**
         * Checks mojo dependency issues.
         */
        void validate(
                RepositorySystemSession session,
                Artifact pluginArtifact,
                ArtifactDescriptorResult artifactDescriptorResult);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed May 24 06:50:28 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginConfigurationValidator.java

    import org.codehaus.plexus.configuration.PlexusConfiguration;
    
    /**
     * Service responsible for validating plugin configuration.
     *
     */
    public interface MavenPluginConfigurationValidator {
        /**
         * Checks mojo configuration issues.
         */
        void validate(
                MavenSession mavenSession,
                MojoDescriptor mojoDescriptor,
                Class<?> mojoClass,
                PlexusConfiguration pomConfiguration,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 11:03:17 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/pom.xml

      <modules>
        <module>child</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <!-- this checks handling of a plugin which is implicitly bound to the lifecycle -->
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-resources-plugin</artifactId>
              <version>0.1-stub-SNAPSHOT</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  5. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

         */
        public int hashCode() {
            return java.util.Objects.hash(getType(), getProvides());
        } //-- int hashCode()
    
        /**
         * Checks equality based on {@link #getType()} and {@link #getProvides()} values.
         */
        public boolean equals(Object other) {
            if (this == other) {
                return true;
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/artifact/DefaultMavenMetadataCacheTest.java

            ArtifactRepository rr2 = repositorySystem.createDefaultRemoteRepository();
            a2.setDependencyFilter(new ExcludesArtifactFilter(Arrays.asList("foo")));
    
            // sanity checks
            assertNotSame(a1, a2);
            assertNotSame(lr1, lr2);
            assertNotSame(rr1, rr2);
    
            DefaultMavenMetadataCache.CacheKey k1 =
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/offline-mode.apt

      offline mode, and then test to see if the file-based basedir for an artifact
      repository works...if it doesn't work, we can mark that repository offline...
    
      OTOH, all offline-mode checks can probably be run from Wagon-based APIs.
    
    ** Maven-SCM
    
      In all but trivial examples, SCM operations cannot complete without
      having access to the versioning server. Therefore, it is assumed that
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Checks whether a given artifact version is considered a {@code SNAPSHOT} or not.
         * <p>
         * Shortcut for {@code getService(ArtifactManager.class).isSnapshot(...)}.
         * <p>
         * In case there is {@link Artifact} in scope, the recommended way to perform this check is
         * use of {@link Artifact#isSnapshot()} instead.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

                <artifactId>maven-checkstyle-plugin</artifactId>
                <configuration>
                  <configLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml</configLocation>
                  <headerLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt</headerLocation>
                </configuration>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 14.8K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/project/validation/ModelValidator.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.validation;
    
    import org.apache.maven.model.Model;
    
    /**
     * Checks the model for missing or invalid values.
     *
     */
    @Deprecated
    public interface ModelValidator {
    
        String ROLE = ModelValidator.class.getName();
    
        ModelValidationResult validate(Model model);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.1K bytes
    - Viewed (0)
Back to top