Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for prefix (0.21 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-metadata.xml

          <name>Maven Integration Test Plugin</name>
          <prefix>clean</prefix>
          <artifactId>maven-clean-plugin</artifactId>
        </plugin>
        <plugin>
          <name>Maven Integration Test Plugin</name>
          <prefix>deploy</prefix>
          <artifactId>maven-deploy-plugin</artifactId>
        </plugin>
        <plugin>
          <name>Maven Integration Test Plugin</name>
          <prefix>install</prefix>
          <artifactId>maven-install-plugin</artifactId>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

    public class DefaultModelInterpolator implements ModelInterpolator {
    
        private static final String PREFIX_PROJECT = "project.";
        private static final String PREFIX_POM = "pom.";
        private static final List<String> PROJECT_PREFIXES_3_1 = Arrays.asList(PREFIX_POM, PREFIX_PROJECT);
        private static final List<String> PROJECT_PREFIXES_4_0 = Collections.singletonList(PREFIX_PROJECT);
    
        private static final Collection<String> TRANSLATED_PATH_EXPRESSIONS;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java

        String getPrefix();
    
        /**
         * Sets the prefix of the plugin.
         *
         * @param prefix The prefix of the plugin.
         * @return This request, never {@code null}.
         */
        PluginPrefixRequest setPrefix(String prefix);
    
        /**
         * Gets the list of group ids to scan for the plugin prefix.
         *
         * @return The list of group ids to scan for the plugin prefix, never {@code null}.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.plugin.prefix.DefaultPluginPrefixRequest;
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.prefix.PluginPrefixRequest;
    import org.apache.maven.plugin.prefix.PluginPrefixResolver;
    import org.apache.maven.plugin.prefix.PluginPrefixResult;
    import org.apache.maven.plugin.version.DefaultPluginVersionRequest;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/prefix/NoPluginFoundForPrefixException.java

     */
    package org.apache.maven.plugin.prefix;
    
    import java.util.List;
    
    import org.eclipse.aether.repository.LocalRepository;
    import org.eclipse.aether.repository.RemoteRepository;
    
    /**
     * NoPluginFoundForPrefixException
     */
    public class NoPluginFoundForPrefixException extends Exception {
    
        public NoPluginFoundForPrefixException(
                String prefix,
                List<String> pluginGroups,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("two", pom.getValue(prefix + "stringParams/stringParam[2]"));
            assertEquals("three", pom.getValue(prefix + "stringParams/stringParam[3]"));
            assertEquals("four", pom.getValue(prefix + "stringParams/stringParam[4]"));
            assertEquals("key1", pom.getValue(prefix + "propertiesParam/property[1]/name"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  7. maven-core/src/main/mdo/extension.mdo

                Other values define only the prefix of classes/resources being exposed. Their binary name must be equal to the prefix or starting with the prefix (followed by "." or "$").
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/OperatingSystemProfileActivator.java

            String test = expectedVersion;
            boolean reverse = false;
            final boolean result;
            if (test.startsWith(REGEX_PREFIX)) {
                result = actualVersion.matches(test.substring(REGEX_PREFIX.length()));
            } else {
                if (test.startsWith("!")) {
                    reverse = true;
                    test = test.substring(1);
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java

    import org.apache.maven.plugin.BuildPluginManager;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException;
    import org.apache.maven.plugin.prefix.PluginPrefixRequest;
    import org.apache.maven.plugin.prefix.PluginPrefixResolver;
    import org.apache.maven.plugin.prefix.PluginPrefixResult;
    import org.eclipse.aether.DefaultRepositorySystemSession;
    import org.eclipse.aether.RepositoryEvent;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResult.java

     * under the License.
     */
    package org.apache.maven.plugin.prefix.internal;
    
    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.prefix.PluginPrefixResult;
    import org.eclipse.aether.repository.ArtifactRepository;
    
    /**
     * Describes the result of a plugin prefix resolution request.
     *
     * @since 3.0
     */
    class DefaultPluginPrefixResult implements PluginPrefixResult {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
Back to top