Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for validate (0.2 sec)

  1. apache-maven/src/assembly/shared/validate

    Michael Osipov <******@****.***> 1640033625 +0100
    Shell Script
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 21 09:29:19 GMT 2021
    - 1.7K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/shared/validate.cmd

    Michael Osipov <******@****.***> 1640033625 +0100
    Batch File
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 21 09:29:19 GMT 2021
    - 3.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-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>
              </execution>
    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)
  4. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/wo-plugin-mgmt/sub/pom.xml

            <executions>
              <execution>
                <id>child-1</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-1</goal>
                </goals>
              </execution>
              <execution>
                <id>child-2</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-2</goal>
                </goals>
              </execution>
    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)
  5. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml

            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <id>inherited-execution</id>
                <inherited>true</inherited>
                <phase>validate</phase>
                <goals>
                  <goal>log-string</goal>
                </goals>
                <configuration>
                  <logFile>target/executions.txt</logFile>
                  <string>inherited-execution</string>
    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)
  6. maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java

            File pom = getProject("lifecycle-listener-dependency-injection");
            MavenExecutionRequest request = createMavenExecutionRequest(pom);
            request.setGoals(Arrays.asList("validate"));
            MavenExecutionResult result = maven.execute(request);
    
            assertFalse(result.hasExceptions(), result.getExceptions().toString());
    
            MavenProject project = result.getProject();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 6K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/component.xml

          <directory>src/assembly/maven/lib</directory>
          <outputDirectory>lib</outputDirectory>
        </fileSet>
      </fileSets>
    
      <files>
        <file>
          <sources>
            <source>src/assembly/shared/validate.cmd</source>
            <source>src/assembly/shared/mvnvalidate.cmd</source>
            <source>src/assembly/shared/init.cmd</source>
            <source>src/assembly/shared/mvnlauncher.cmd</source>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Jun 04 19:03:41 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                    new CleanLifecycle(),
                    new DefaultLifecycle(),
                    new SiteLifecycle(),
                    new WrapperLifecycle());
            // validate lifecycle
            for (Lifecycle lifecycle : this) {
                Set<String> set = new HashSet<>();
                lifecycle.phases().forEach(phase -> {
                    if (!set.add(phase.name())) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginValidator.java

    import java.util.List;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    
    /**
     * MavenPluginValidator
     */
    public interface MavenPluginValidator {
    
        void validate(Artifact pluginArtifact, PluginDescriptor pluginDescriptor, List<String> errors);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 18 11:03:17 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java

         */
        protected BuildSummary(MavenProject project, long time) {
            this.project = Objects.requireNonNull(project, "project cannot be null");
            // TODO Validate for < 0?
            this.time = time;
        }
    
        /**
         * Gets the project being summarized.
         *
         * @return The project being summarized, never {@code null}.
         */
    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