Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for extensions (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

         * same class realm is used to load build extensions and load mojos for extensions=true plugins.
         * </p>
         * <strong>Note:</strong> This is part of internal implementation and may be changed or removed without notice
         *
         * @since 3.3.0
         */
        public static final String KEY_EXTENSIONS_REALMS = DefaultMavenPluginManager.class.getName() + "/extensionsRealms";
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

            if (build != null) {
                for (Extension extension : build.getExtensions()) {
                    Plugin plugin = new Plugin();
                    plugin.setGroupId(extension.getGroupId());
                    plugin.setArtifactId(extension.getArtifactId());
                    plugin.setVersion(extension.getVersion());
                    XmlNode configuration = extension.getDelegate().getConfiguration();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        }
    
        private static String getKey(Plugin plugin, boolean extension) {
            String version = ArtifactUtils.toSnapshotVersion(plugin.getVersion());
            return (extension ? "extension>" : "plugin>") + plugin.getGroupId() + ":" + plugin.getArtifactId() + ":"
                    + version;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/ValueGraph.java

     *   <li>graphs whose edges have associated values
     * </ul>
     *
     * <p>{@code ValueGraph}, as a subtype of {@code Graph}, explicitly does not support parallel edges,
     * and forbids implementations or extensions with parallel edges. If you need parallel edges, use
     * {@link Network}. (You can use a positive {@code Integer} edge value as a loose representation of
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 15K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

            repositoryRequest.setRemoteRepositories(getPluginArtifactRepositories());
    
            // prime realm cache
            MavenSession session = createMavenSession(getProject("project-with-build-extensions-plugin"));
            MavenProject project = session.getCurrentProject();
            Plugin plugin = project.getPlugin("org.apache.maven.its.plugins:maven-it-plugin");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

            }
    
            for (MavenProject project : projects) {
                // MNG-1911 / MNG-5572: Building plugins with extensions cannot be part of reactor
                for (Plugin plugin : project.getBuildPlugins()) {
                    if (plugin.isExtensions()) {
                        String pluginKey =
                                ArtifactUtils.key(plugin.getGroupId(), plugin.getArtifactId(), plugin.getVersion());
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                mergePlugin_ArtifactId(builder, target, source, sourceDominant, context);
                mergePlugin_Version(builder, target, source, sourceDominant, context);
                mergePlugin_Extensions(builder, target, source, sourceDominant, context);
                mergePlugin_Executions(builder, target, source, sourceDominant, context);
                mergePlugin_Dependencies(builder, target, source, sourceDominant, context);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/Graph.java

     *   <li>graphs whose nodes/edges are insertion-ordered, sorted, or unordered
     * </ul>
     *
     * <p>{@code Graph} explicitly does not support parallel edges, and forbids implementations or
     * extensions with parallel edges. If you need parallel edges, use {@link Network}.
     *
     * <h3>Building a {@code Graph}</h3>
     *
     * <p>The implementation classes that {@code common.graph} provides are not public, by design. To
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="https://tools.ietf.org/html/rfc6455">{@code Sec-WebSocket-Extensions}</a>
       * header field name.
       *
       * @since 28.0
       */
      public static final String SEC_WEBSOCKET_EXTENSIONS = "Sec-WebSocket-Extensions";
      /**
       * The HTTP <a href="https://tools.ietf.org/html/rfc6455">{@code Sec-WebSocket-Key}</a> header
       * field name.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:08:08 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/MediaType.java

       * name extensions for Windows Media metafiles</a>.
       *
       * @since 20.0
       */
      public static final MediaType WMA_AUDIO = createConstant(AUDIO_TYPE, "x-ms-wma");
    
      /**
       * Windows Media metafiles. For more information, see <a
       * href="https://msdn.microsoft.com/en-us/library/windows/desktop/dd562994(v=vs.85).aspx">file
       * name extensions for Windows Media metafiles</a>.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
Back to top