- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for prerequisites (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/MavenPluginPrerequisitesChecker.java
/** * Service responsible for checking if plugin's prerequisites are met. */ @FunctionalInterface public interface MavenPluginPrerequisitesChecker extends Consumer<PluginDescriptor> { /** * * @param pluginDescriptor the plugin descriptor to check * @throws IllegalStateException in case the checked prerequisites are not met */ @Override
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 16:35:21 UTC 2025 - 1.3K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvn
# specific language governing permissions and limitations # under the License. # ----------------------------------------------------------------------------- # Apache Maven Startup Script # # Environment Variable Prerequisites # # JAVA_HOME (Optional) Points to a Java installation. # MAVEN_ARGS (Optional) Arguments passed to Maven before CLI arguments.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 10 16:40:06 UTC 2025 - 9.2K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvn.cmd
@REM under the License. @REM ----------------------------------------------------------------------------- @REM Apache Maven Startup Script @REM @REM Environment Variable Prerequisites @REM @REM JAVA_HOME (Optional) Points to a Java installation. @REM MAVEN_ARGS (Optional) Arguments passed to Maven before CLI arguments.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 10 16:40:06 UTC 2025 - 10.7K bytes - Viewed (3) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
PluginIncompatibleException pie = new PluginIncompatibleException( pluginDescriptor.getPlugin(), "\nThe plugin " + pluginDescriptor.getId() + " has unmet prerequisites: \n\t" + messages); prerequisiteExceptions.forEach(pie::addSuppressed); throw pie; } } @Override @Deprecated
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 16:35:21 UTC 2025 - 46.4K bytes - Viewed (0)