Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 239 for goal (0.16 sec)

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

            <version>1.0-SNAPSHOT</version>
            <executions>
              <execution>
                <goals>
                  <goal>b</goal>
                  <goal>a</goal>
                  <goal>d</goal>
                  <goal>c</goal>
                  <goal>e</goal>
                </goals>
              </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
    - 2K bytes
    - Viewed (0)
  2. 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 21 03:35:09 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 2.2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

            <version>1.0-alpha-14</version>
            <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 21 03:35:09 GMT 2024
    - Last Modified: Fri Sep 22 08:59:31 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.pom

                <phase>pre-site</phase>
                <goals>
                  <goal>xdoc</goal>
                  <goal>xsd</goal>
                </goals>
              </execution>
              <execution>
                <id>standard</id>
                <goals>
                  <goal>java</goal>
                  <goal>xpp3-reader</goal>
                  <goal>xpp3-writer</goal>
                </goals>
              </execution>
            </executions>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 3.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml

                  <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>
                <execution>
    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)
  6. 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 21 03:35:09 GMT 2024
    - Last Modified: Wed Mar 06 19:57:04 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/index.apt

         1. plugin goal execution in a child is usually simply appended (at end): you can't try to insert in the middle of pre-existing inherited executions,
    
         2. append happens at plugin level first, then goal level, independently from phases.
            This means for example that adding pluginA:goal2 to pre-existing (pluginA:goal1, pluginB:goal) will lead to (pluginA:goal1, pluginA:goal2, pluginB:goal)
    
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Jun 14 05:48:39 GMT 2023
    - 5.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

                    // Compute goal coordinates
                    String groupId, artifactId, version, goal;
                    String[] p = mojo.getGoal().trim().split(":");
                    if (p.length == 3) {
                        // <groupId>:<artifactId>:<goal>
                        groupId = p[0];
                        artifactId = p[1];
                        version = null;
                        goal = p[2];
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 8K bytes
    - Viewed (0)
  9. 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 21 03:35:09 GMT 2024
    - Last Modified: Wed Mar 06 19:57:04 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  10. futures/failureaccess/pom.xml

            <version>5.1.8</version>
            <executions>
              <execution>
                <id>bundle-manifest</id>
                <phase>process-classes</phase>
                <goals>
                  <goal>manifest</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <instructions>
                <Export-Package>com.google.common.util.concurrent.internal</Export-Package>
    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)
Back to top