- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for requiresOnline (0.06 sec)
-
compat/maven-plugin-api/src/test/resources/plugin.xml
<requiresDirectInvocation>false</requiresDirectInvocation> <requiresProject>true</requiresProject> <requiresReports>false</requiresReports> <aggregator>false</aggregator> <requiresOnline>false</requiresOnline> <inheritedByDefault>true</inheritedByDefault> <phase>package</phase> <implementation>org.apache.maven.plugin.jar.JarMojo</implementation> <language>java</language>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
if (aggregator != null) { mojo.setAggregator(Boolean.parseBoolean(aggregator)); } String requiresOnline = c.getChild("requiresOnline").getValue(); if (requiresOnline != null) { mojo.setOnlineRequired(Boolean.parseBoolean(requiresOnline)); } String inheritedByDefault = c.getChild("inheritedByDefault").getValue();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 17.5K bytes - Viewed (0) -
impl/maven-core/src/site/apt/offline-mode.apt
(three value logic: yes, no, don't-care). The requiresOnline field in the mojo descriptor has the following semantics: [true] Online status is required for this mojo to function correctly. [false] <<(Default)>> Either status is acceptable for the mojo to execute. It doesn't care. The majority of mojos will leave the requiresOnline == false,
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 10.6K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
// ---------------------------------------------------------------------- /** * @param requiresOnline <code>true</code> if the Mojo is online, <code>false</code> otherwise. */ public void setOnlineRequired(boolean requiresOnline) { this.onlineRequired = requiresOnline; } /** * @return <code>true</code> if the Mojo is online, <code>false</code> otherwise. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 21.7K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
<defaultValue>false</defaultValue> </field> <field> <name>requiresOnline</name> <version>1.0.0/1.1.0</version> <type>boolean</type> <description>Flags this Mojo to require online mode for its operation.</description> <defaultValue>false</defaultValue>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:28:41 UTC 2025 - 24.8K bytes - Viewed (0)