Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 215 for Goal (0.14 sec)

  1. maven-core/src/test/resources-project-builder/execution-configuration/pom.xml

                    <executions>
                        <execution>
                            <id>nexus.xml</id>
                            <goals>
                                <goal>java</goal>
                                <goal>xpp3-reader</goal>
                                <goal>xpp3-writer</goal>
                            </goals>
                            <configuration>
                                <version>1.0.8</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 2.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

            <executions>
              <execution>
                <id>archetype-common</id>
                <goals>
                  <goal>java</goal>
                  <goal>xsd</goal>
                  <goal>xpp3-reader</goal>
                  <goal>xpp3-writer</goal>
                </goals>
                <configuration>
                  <version>1.0.0</version>
                  <model>src/main/mdo/archetype-common.mdo</model>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 08:59:31 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

                        goal = p[2];
                    } else if (p.length == 4) {
                        // <groupId>:<artifactId>:<version>:<goal>
                        groupId = p[0];
                        artifactId = p[1];
                        version = p[2];
                        goal = p[3];
                    } else {
                        // invalid
                        LOGGER.warn(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 8K bytes
    - Viewed (0)
  4. apache-maven/pom.xml

            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
              <execution>
                <id>unpack-jansi-native</id>
                <goals>
                  <goal>unpack-dependencies</goal>
                </goals>
                <configuration>
                  <includeArtifactIds>jansi</includeArtifactIds>
                  <includes>org/fusesource/jansi/internal/native/Windows/**</includes>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/wo-plugin-mgmt/sub/pom.xml

            <executions>
              <execution>
                <id>merge</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-a</goal>
                  <goal>merged</goal>
                  <goal>child-b</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/merged-plugin-exec-goals-order/w-plugin-mgmt/pom.xml

              <executions>
                <execution>
                  <id>merge</id>
                  <phase>validate</phase>
                  <goals>
                    <goal>parent-b</goal>
                    <goal>merged</goal>
                    <goal>parent-a</goal>
                  </goals>
                </execution>
              </executions>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  7. api/maven-api-plugin/pom.xml

                  </params>
                </configuration>
              </execution>
              <execution>
                <id>plugin-doc</id>
                <goals>
                  <goal>xdoc</goal>
                  <goal>xsd</goal>
                </goals>
                <phase>generate-resources</phase>
                <configuration>
                  <version>2.0.0</version>
                  <models>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

         */
        private Map<String, List<MojoExecution>> forkedExecutions = new LinkedHashMap<>();
    
        public MojoExecution(Plugin plugin, String goal, String executionId) {
            this.plugin = plugin;
            this.goal = goal;
            this.executionId = executionId;
        }
    
        public MojoExecution(MojoDescriptor mojoDescriptor) {
            this.mojoDescriptor = mojoDescriptor;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 15:52:23 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  9. api/maven-api-metadata/pom.xml

                  </params>
                </configuration>
              </execution>
              <execution>
                <id>plugin-doc</id>
                <goals>
                  <goal>xdoc</goal>
                  <goal>xsd</goal>
                </goals>
                <phase>generate-resources</phase>
                <configuration>
                  <version>1.2.0</version>
                  <models>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  10. api/maven-api-settings/pom.xml

                  </params>
                </configuration>
              </execution>
              <execution>
                <id>modello-site-docs</id>
                <goals>
                  <goal>xdoc</goal>
                  <goal>xsd</goal>
                </goals>
                <phase>generate-resources</phase>
                <configuration>
                  <version>1.3.0</version>
                  <models>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 3.2K bytes
    - Viewed (0)
Back to top