- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for inheritedByDefault (0.28 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
} return mojos; } private boolean extractInheritedByDefault(PlexusConfiguration c) { String inheritedByDefault = c.getChild("inheritedByDefault").getValue(); if (inheritedByDefault != null) { return Boolean.parseBoolean(inheritedByDefault); } return false; } private boolean extractIsolatedRealm(PlexusConfiguration c) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 17.5K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
*/ public boolean isInheritedByDefault() { return inheritedByDefault; } /** * @param inheritedByDefault <code>true</code> if the Mojo is inherited, <code>false</code> otherwise. */ public void setInheritedByDefault(boolean inheritedByDefault) { this.inheritedByDefault = inheritedByDefault; } /** {@inheritDoc} */ @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 21.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
} public String getSource() { return source; } public boolean isInheritedByDefault() { return inheritedByDefault; } public void setInheritedByDefault(boolean inheritedByDefault) { this.inheritedByDefault = inheritedByDefault; } /** * Gets the artifacts that make up the plugin's class realm, excluding artifacts shadowed by the Maven core realmRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 16.2K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
<version>1.0.0+</version> <description></description> <type>boolean</type> <defaultValue>false</defaultValue> </field> <field> <name>inheritedByDefault</name> <version>1.0.0+</version> <description></description> <type>boolean</type> <defaultValue>true</defaultValue> </field> <field>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:28:41 UTC 2025 - 24.8K bytes - Viewed (0)