Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 968 for executions (0.19 sec)

  1. maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/sub/pom.xml

            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <!-- NOTE: Explicitly reference "default" id here -->
                <id>default</id>
                <phase>child-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>child-non-default</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-interpolation-build/pom.xml

                <executions>
                  <execution>
                    <id>Active all ||${project.basedir}||</id>
                    <configuration>
                      <plugin-all-profiles-in>Active all ||${project.basedir}||</plugin-all-profiles-in>
                    </configuration>
                  </execution>
                </executions>
              </plugin>
              <plugin>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Apr 12 10:26:40 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  3. pom.xml

    				<version>0.8.11</version>
    				<executions>
    					<execution>
    						<goals>
    							<goal>prepare-agent</goal>
    						</goals>
    					</execution>
    					<execution>
    						<id>report</id>
    						<phase>prepare-package</phase>
    						<goals>
    							<goal>report</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<groupId>com.mycila</groupId>
    XML
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

                            for (String goal : execution.getGoals()) {
                                MojoExecution mojoExecution = new MojoExecution(plugin, goal, execution.getId());
                                mojoExecution.setLifecyclePhase(execution.getPhase());
                                addMojoExecution(phaseBindings, mojoExecution, execution.getPriority());
                            }
                        }
                    }
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            List<PluginExecution> executions =
                    (List<PluginExecution>) pom.getValue("build/plugins[@artifactId='maven-resources-plugin']/executions");
            assertNotNull(executions);
            assertEquals(4, executions.size());
            assertEquals("default-resources", executions.get(0).getId());
            assertEquals("default-testResources", executions.get(1).getId());
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  6. futures/failureaccess/pom.xml

          <plugin>
            <artifactId>maven-javadoc-plugin</artifactId>
            <executions>
              <execution>
                <id>attach-docs</id>
              </execution>
              <execution>
                <id>generate-javadoc-site-report</id>
                <phase>site</phase>
                <goals><goal>javadoc</goal></goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
      <profiles>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Oct 17 02:24:23 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-exec-order-and-default-exec/pom.xml

            <plugin>
              <artifactId>maven-resources-plugin</artifactId>
              <version>2.2</version>
              <executions>
                <execution>
                  <id>test-1</id>
                  <goals>
                    <goal>resources</goal>
                  </goals>
                </execution>
              </executions>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/duplicate-plugins-merged-pom.xml

                  <version>1</version>
                </dependency>
              </dependencies>
              <executions>
                <execution>
                  <id>first</id>
                  <goals>
                    <goal>compile</goal>
                  </goals>
                </execution>
              </executions>
            </plugin>
            <plugin>
              <artifactId>maven-compiler-plugin</artifactId>
              <dependencies>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 1.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/equal-plugin-exec-ids/pom.xml

            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-b</artifactId>
            <version>1.0-SNAPSHOT</version>
            <executions>
              <execution>
                <id>the-one-and-only-id</id>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
      <reporting>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/sub/pom.xml

            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <!-- NOTE: Explicitly reference "default" id here -->
                <id>default</id>
                <phase>child-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>child-non-default</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
Back to top