Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for invalidate (0.17 sec)

  1. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml

              <executions>
                <execution>
                  <id>parent-1</id>
                  <phase>validate</phase>
                  <goals>
                    <goal>parent-1</goal>
                  </goals>
                </execution>
                <execution>
                  <id>parent-2</id>
                  <phase>validate</phase>
                  <goals>
                    <goal>parent-2</goal>
                  </goals>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedCoreExpressionValidator.java

            return "uses deprecated parameter expression '" + parameter.getDefaultValue() + "': "
                    + DEPRECATED_CORE_PARAMETERS.get(parameter.getDefaultValue());
        }
    
        @Override
        protected void doValidate(
                MavenSession mavenSession,
                MojoDescriptor mojoDescriptor,
                Class<?> mojoClass,
                PlexusConfiguration pomConfiguration,
                ExpressionEvaluator expressionEvaluator) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 26 16:22:12 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/AbstractMavenPluginDependenciesValidator.java

        }
    
        @Override
        public void validate(
                RepositorySystemSession session,
                Artifact pluginArtifact,
                ArtifactDescriptorResult artifactDescriptorResult) {
            if (artifactDescriptorResult.getDependencies() != null) {
                doValidate(session, pluginArtifact, artifactDescriptorResult);
            }
        }
    
        protected abstract void doValidate(
                RepositorySystemSession session,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed May 24 06:50:28 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/providers/DefaultLifecycleProvider.java

    @Singleton
    public final class DefaultLifecycleProvider extends AbstractLifecycleProvider {
        static final String LIFECYCLE_ID = "default";
    
        // START SNIPPET: default
        private static final String[] PHASES = {
            "validate",
            "initialize",
            "generate-sources",
            "process-sources",
            "generate-resources",
            "process-resources",
            "compile",
            "process-classes",
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Jan 16 13:30:48 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/pom.xml

                <artifactId>b</artifactId>
                <version>0.1</version>
              </dependency>
            </dependencies>
            <executions>
              <execution>
                <id>load</id>
                <phase>validate</phase>
                <configuration>
                  <resourcePaths>org/apache/maven/its/mng3906/SomeClass.class</resourcePaths>
                  <pluginClassLoaderOutput>target/pcl.properties</pluginClassLoaderOutput>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 2.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-exec-config-order/w-plugin-mgmt/pom.xml

        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-configuration</artifactId>
            <executions>
              <execution>
                <phase>validate</phase>
                <goals>
                  <goal>config</goal>
                </goals>
                <configuration>
                  <stringParams>
                    <stringParam>one</stringParam>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-settings/test-pom-and-settings-interpolation/pom.xml

            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-expression</artifactId>
            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <phase>validate</phase>
                <goals>
                  <goal>eval</goal>
                </goals>
                <configuration>
                  <outputFile>target/pom.properties</outputFile>
                  <expressions>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 11 18:17:16 GMT 2021
    - 2.4K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelNormalizer.java

                            Build.newBuilder(build).plugins(normalized.values()).build());
                }
            }
    
            /*
             * NOTE: This is primarily to keep backward-compat with Maven 2.x which did not validate that dependencies are
             * unique within a single POM. Upon multiple declarations, 2.x just kept the last one but retained the order of
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            } catch (IOException e) {
                throw new PluginDescriptorParsingException(plugin, pluginFile.getAbsolutePath(), e);
            }
    
            List<String> errors = new ArrayList<>();
            pluginValidator.validate(pluginArtifact, pluginDescriptor, errors);
    
            if (!errors.isEmpty()) {
                throw new InvalidPluginDescriptorException(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml

            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-expression</artifactId>
            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <phase>validate</phase>
                <goals>
                  <goal>eval</goal>
                </goals>
                <configuration>
                  <outputFile>target/pom.properties</outputFile>
                  <expressions>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 5K bytes
    - Viewed (0)
Back to top