Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for constituent (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        }
    
        private static String getId(ClassRealmConstituent constituent) {
            return getId(
                    constituent.getGroupId(),
                    constituent.getArtifactId(),
                    constituent.getType(),
                    constituent.getClassifier(),
                    constituent.getVersion());
        }
    
    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)
  2. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmConstituent.java

    import java.io.File;
    
    /**
     * Describes a constituent of a class realm.
     *
     */
    public interface ClassRealmConstituent {
    
        /**
         * Gets the group id of the constituent's artifact.
         *
         * @return The group id, never {@code null}.
         */
        String getGroupId();
    
        /**
         * Gets the artifact id of the constituent's artifact.
         *
         * @return The artifact id, never {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * This method does not handle the patch-module paths, because the patches
         * depend on which modules have been previously added on the module-paths.
         *
         * <p>If the dependency can be a constituent of both the class-path and the module-path,
         * then the path type is determined by checking if the dependency is modular.</p>
         *
         * @param types types of path where a dependency can be placed
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * This method does not handle the patch-module paths, because the patches
         * depend on which modules have been previously added on the module-paths.
         *
         * <p>If the dependency can be a constituent of both the class-path and the module-path,
         * then the path type is determined by checking if the dependency is modular.</p>
         *
         * @param types types of path where a dependency can be placed
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmRequest.java

        private final List<ClassRealmConstituent> constituents;
    
        DefaultClassRealmRequest(
                RealmType type,
                ClassLoader parent,
                List<String> parentImports,
                Map<String, ClassLoader> foreignImports,
                List<ClassRealmConstituent> constituents) {
            this.type = type;
            this.parent = parent;
    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)
  6. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmRequest.java

         */
        Map<String, ClassLoader> getForeignImports();
    
        /**
         * Gets the constituents for the class realm.
         *
         * @return The modifiable list of constituents for the class realm, never {@code null}.
         */
        List<ClassRealmConstituent> getConstituents();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
Back to top