- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for requiresOnline (0.06 seconds)
-
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>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.3K bytes - Click Count (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();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 17.5K bytes - Click Count (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. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 21.7K bytes - Click Count (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,
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 10.6K bytes - Click Count (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>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:28:41 GMT 2025 - 24.8K bytes - Click Count (0)