- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for setPluginContext (0.19 seconds)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/ContextEnabled.java
* */ public interface ContextEnabled { /** * Set a new shared context <code>Map</code> to a mojo before executing it. * * @param pluginContext a new <code>Map</code> */ void setPluginContext(Map pluginContext); /** * @return a <code>Map</code> stored in the plugin container's context. */ Map getPluginContext();Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.5K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java
} return log; } @Override public Map getPluginContext() { return pluginContext; } @Override public void setPluginContext(Map pluginContext) { this.pluginContext = pluginContext; }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 7.4K bytes - Click Count (0)