Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for compatible (0.26 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Language.java

    @SuppressWarnings("checkstyle:InterfaceIsType")
    public interface Language extends ExtensibleEnum {
    
        /**
         * The "none" language. It is not versioned, family is same to itself, and compatible with itself only.
         * In turn, every {@link Language} implementation must be compatible with {@code NONE} language.
         */
        Language NONE = language("none");
    
        // TODO: this should be moved out from here to Java Support (builtin into core)
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginIncompatibleException.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin;
    
    import org.apache.maven.model.Plugin;
    
    /**
     * Signals a plugin which is not compatible with the current Maven runtime.
     */
    public class PluginIncompatibleException extends PluginManagerException {
    
        public PluginIncompatibleException(Plugin plugin, String message) {
            this(plugin, message, null);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

                throws MojoNotFoundException, PluginResolutionException, PluginDescriptorParsingException,
                        InvalidPluginDescriptorException;
    
        /**
         * Verifies the specified plugin is compatible with the current Maven runtime.
         *
         * @param pluginDescriptor The descriptor of the plugin to check, must not be {@code null}.
         * @deprecated Use {@link #checkPrerequisites(PluginDescriptor)} instead.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom

      <build>
        <plugins>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <!-- surefire requires plexus-utils to be jdk 1.3 compatible -->
              <source>1.3</source>
              <target>1.3</target>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 2.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

             * unintentionally use such a magic expression for an ordinary property. So here we check whether we
             * ended up with a magic value that is not compatible with the type of the configured mojo parameter (a string
             * could still be converted by the configurator so we leave those alone). If so, back off to evaluating the
             * expression from properties only.
             */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 30 23:39:19 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/unrecognized-stax2-api-4.2.1.txt

    Copyright (c) 2008 FasterXML LLC ******@****.***
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 29 10:03:50 GMT 2023
    - 177 bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * </p>
         * <ul>
         *   <li>If {@link #CLASSES} path type is also set, then the dependency should be placed on the
         *       module-path, but is also compatible with placement on the class-path. Compatibility can
         *       be achieved, for example, by repeating in the {@code META-INF/services/} directory the services
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationValuePreprocessor.java

         * requirement) for the preprocessor to resolve the value to a compatible value or a (string) value than can be
         * unmarshalled into that type. The preprocessor is not required to perform any type conversion but should rather
         * filter out incompatible values from its result.
         *
         * @param value The configuration value to preprocess, must not be {@code null}.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  9. maven-core/pom.xml

                  <include>org.apache.maven.toolchain</include>
                  <include>org.apache.maven.usability</include>
                </includes>
                <!-- allowed non-binary backwards compatible changes -->
                <excludes>
                  <!-- START default constructor on Plexus/JSR 330 components -->
                  <exclude>org.apache.maven.lifecycle.DefaultLifecycleExecutor#DefaultLifecycleExecutor()</exclude>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom

      <build>
        <plugins>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <!-- surefire requires plexus-utils to be jdk 1.3 compatible -->
              <source>1.3</source>
              <target>1.3</target>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 2.2K bytes
    - Viewed (0)
Back to top