Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 151 for Goals (0.01 sec)

  1. api/maven-api-toolchain/pom.xml

              </params>
            </configuration>
            <executions>
              <execution>
                <id>modello</id>
                <goals>
                  <goal>velocity</goal>
                  <goal>xdoc</goal>
                  <goal>xsd</goal>
                </goals>
                <phase>generate-resources</phase>
              </execution>
            </executions>
          </plugin>
          <plugin>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. compat/maven-toolchain-model/pom.xml

                <model>src/main/mdo/toolchains.mdo</model>
              </models>
            </configuration>
            <executions>
              <execution>
                <id>velocity</id>
                <goals>
                  <goal>velocity</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
                  <templates>
                    <template>model-v3.vm</template>
                  </templates>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. compat/maven-repository-metadata/pom.xml

              <velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir>
            </configuration>
            <executions>
              <execution>
                <id>modello-v3</id>
                <goals>
                  <goal>velocity</goal>
                </goals>
                <configuration>
                  <version>1.1.0</version>
                  <models>
                    <model>../../api/maven-api-metadata/src/main/mdo/metadata.mdo</model>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  4. pom.xml

    					</target>
    				</configuration>
    				<goals>
    					<goal>run</goal>
    				</goals>
    			</plugin>
    			<plugin>
    				<artifactId>maven-resources-plugin</artifactId>
    				<executions>
    					<execution>
    						<id>copy-resources-deb</id>
    						<phase>prepare-package</phase>
    						<goals>
    							<goal>copy-resources</goal>
    						</goals>
    						<configuration>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 49.4K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/LayeredMavenOptions.java

        @Override
        public Optional<String> atFile() {
            return returnFirstPresentOrEmpty(MavenOptions::atFile);
        }
    
        @Override
        public Optional<List<String>> goals() {
            return collectListIfPresentOrEmpty(MavenOptions::goals);
        }
    
        @Override
        public MavenOptions interpolate(UnaryOperator<String> callback) {
            ArrayList<MavenOptions> interpolatedOptions = new ArrayList<>(options.size());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  6. compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java

            }
    
            return plugins;
        }
    
        private Plugin newPlugin(String artifactId, String... goals) {
            Plugin plugin = new Plugin();
    
            plugin.setGroupId("org.apache.maven.plugins");
            plugin.setArtifactId(artifactId);
    
            for (String goal : goals) {
                PluginExecution pluginExecution = new PluginExecution();
                pluginExecution.setId("default-" + goal);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                    for (String s : MultilineMessageHelper.format(
                            "Your build is requesting parallel execution, but this project contains the following "
                                    + "plugin(s) that have goals not marked as thread-safe to support parallel execution.",
                            "While this /may/ work fine, please look for plugin updates and/or "
                                    + "request plugins be made thread-safe.",
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/CommonsCliEncryptOptions.java

            if (commandLine.hasOption(CLIManager.YES)) {
                return Optional.of(Boolean.TRUE);
            }
            return Optional.empty();
        }
    
        @Override
        public Optional<List<String>> goals() {
            if (!commandLine.getArgList().isEmpty()) {
                return Optional.of(commandLine.getArgList());
            }
            return Optional.empty();
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 25 17:39:57 UTC 2025
    - 4K bytes
    - Viewed (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/CommonsCliUpgradeOptions.java

        protected CommonsCliUpgradeOptions(String source, CLIManager cliManager, CommandLine commandLine) {
            super(source, cliManager, commandLine);
        }
    
        @Override
        @Nonnull
        public Optional<List<String>> goals() {
            if (!commandLine.getArgList().isEmpty()) {
                return Optional.of(commandLine.getArgList());
            }
            return Optional.empty();
        }
    
        @Override
        @Nonnull
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:48:39 UTC 2025
    - 7K bytes
    - Viewed (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/builtin/BuiltinShellCommandRegistryFactory.java

                            .map(Lifecycle.Phase::name)
                            .toList();
                    // TODO: add goals dynamically
                    List<String> goals = List.of("wrapper:wrapper");
                    names = Stream.concat(phases.stream(), goals.stream()).toList();
                } catch (LookupException e) {
                    names = List.of(
                            "clean",
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top