- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for Aggregator (0.12 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
if (requiresReports != null) { mojo.setRequiresReports(Boolean.parseBoolean(requiresReports)); } String aggregator = c.getChild("aggregator").getValue(); if (aggregator != null) { mojo.setAggregator(Boolean.parseBoolean(aggregator)); } String requiresOnline = c.getChild("requiresOnline").getValue(); if (requiresOnline != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
this.executeLifecycle = executeLifecycle; } /** * @param aggregator <code>true</code> if the Mojo uses the Maven project and its child modules, * <code>false</code> otherwise. */ public void setAggregator(boolean aggregator) { this.aggregator = aggregator; } /** * @return <code>true</code> if the Mojo uses the Maven project and its child modules,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 21.7K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java
} @Test void testInvalidAggregatorPackaging() throws Exception { SimpleProblemCollector result = validate("invalid-aggregator-packaging-pom.xml"); assertViolations(result, 0, 1, 0); assertTrue(result.getErrors().get(0).contains("Aggregator projects require 'pom' as packaging.")); } @Test void testMissingDependencyArtifactId() throws Exception {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 32.8K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
<type>boolean</type> <description>Flags this Mojo to require online mode for its operation.</description> <defaultValue>false</defaultValue> </field> <field> <name>aggregator</name> <version>1.0.0+</version> <type>boolean</type> <description> Flags this Mojo to run it in a multi-module way, i.e. aggregate the build with the set of projects
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Aug 16 14:16:22 UTC 2024 - 24.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0)