- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 29 for prerequisites (0.05 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) -
compat/maven-model/src/test/java/org/apache/maven/model/PrerequisitesTest.java
/** * Tests {@code Prerequisites}. * */ class PrerequisitesTest { @Test void testHashCodeNullSafe() { new Prerequisites().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Prerequisites().equals(null)); new Prerequisites().equals(new Prerequisites()); } @Test void testEqualsIdentity() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 1.6K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorReaderDelegate.java
} } Map<String, Object> properties = new LinkedHashMap<>(); Prerequisites prerequisites = model.getPrerequisites(); if (prerequisites != null) { properties.put("prerequisites.maven", prerequisites.getMaven()); } List<License> licenses = model.getLicenses(); properties.put("license.count", licenses.size());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Mar 20 22:29:18 UTC 2025 - 6K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvnup.cmd
@REM under the License. @REM ----------------------------------------------------------------------------- @REM Apache Maven Upgrade Script @REM @REM Environment Variable Prerequisites @REM @REM JAVA_HOME (Optional) Points to a Java installation. @REM MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 1.6K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvnenc
# specific language governing permissions and limitations # under the License. # ----------------------------------------------------------------------------- # Apache Maven Encrypt Script # # Environment Variable Prerequisites # # JAVA_HOME (Optional) Points to a Java installation. # MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 18 11:01:21 UTC 2024 - 1.3K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvnsh
# specific language governing permissions and limitations # under the License. # ----------------------------------------------------------------------------- # Apache Maven Encrypt Script # # Environment Variable Prerequisites # # JAVA_HOME (Optional) Points to a Java installation. # MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 17 09:50:45 UTC 2024 - 1.3K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvnsh.cmd
@REM under the License. @REM ----------------------------------------------------------------------------- @REM Apache Maven Encrypt Script @REM @REM Environment Variable Prerequisites @REM @REM JAVA_HOME (Optional) Points to a Java installation. @REM MAVEN_BATCH_ECHO (Optional) Set to 'on' to enable the echoing of the batch commands.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 17 09:50:45 UTC 2024 - 1.7K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvnup
# specific language governing permissions and limitations # under the License. # ----------------------------------------------------------------------------- # Apache Maven Upgrade Script # # Environment Variable Prerequisites # # JAVA_HOME (Optional) Points to a Java installation. # MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 1.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
if (!"maven-plugin".equals(mavenProject.getPackaging())) { Prerequisites prerequisites = mavenProject.getModel().getDelegate().getPrerequisites(); if (prerequisites != null && prerequisites.getMaven() != null) { logger.warn( "The project {} uses prerequisites"
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon May 05 16:58:52 UTC 2025 - 28.7K bytes - Viewed (1) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java
*/ @Deprecated void checkRequiredMavenVersion(PluginDescriptor pluginDescriptor) throws PluginIncompatibleException; /** * Verifies that the specified plugin's prerequisites are met. * * @param pluginDescriptor The descriptor of the plugin to check, must not be {@code null}. * @since 4.0.0 */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0)