Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for importCsv (0.26 sec)

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

            } else {
                foreignImports.put("", classRealmManager.getMavenApiRealm());
            }
    
            if (parent != null && imports != null) {
                for (String parentImport : imports) {
                    foreignImports.put(parentImport, parent);
                }
            }
    
            return foreignImports;
        }
    
        public <T> T getConfiguredMojo(Class<T> mojoInterface, MavenSession session, MojoExecution mojoExecution)
    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-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                        problems.add(
                                Severity.WARNING,
                                ModelProblem.Version.BASE,
                                "BOM imports from within reactor should be avoided",
                                dependency.getLocation(""));
                    }
                }
    
                final ModelBuilderResult importResult;
                try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

                }
            }
        }
    
        public ClassRealm getMavenApiRealm() {
            return mavenApiRealm;
        }
    
        /**
         * Creates a new class realm with the specified parent and imports.
         *
         * @param baseRealmId The base id to use for the new realm, must not be {@code null}.
         * @param type The type of the class realm, must not be {@code null}.
    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. maven-api-impl/src/main/java/org/apache/maven/api/services/model/DependencyManagementImporter.java

    /**
     * Handles the import of dependency management from other models into the target model.
     *
     */
    public interface DependencyManagementImporter {
    
        /**
         * Imports the specified dependency management sections into the given target model.
         *
         * @param target The model into which to import the dependency management section, must not be <code>null</code>.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    s/realm/ClassRealm.class package org.codehaus.plexus.classworlds.realm; public synchronized class ClassRealm extends java.net.URLClassLoader { private org.codehaus.plexus.classworlds.ClassWorld world; private String id; private java.util.TreeSet imports; private org.codehaus.plexus.classworlds.strategy.Strategy strategy; private ClassRealm parent; public void ClassRealm(org.codehaus.plexus.classworlds.ClassWorld, String); public void ClassRealm(org.codehaus.plexus.classworlds.ClassWorld, String,...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 41.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmRequest.java

         *
         * @return The parent class realm or {@code null} if using the default parent.
         */
        ClassLoader getParent();
    
        /**
         * @deprecated Use {@link #getParentImports()} instead.
         * @return imports
         */
        @Deprecated
        List<String> getImports();
    
        /**
         * Gets the packages/types to import from the parent realm.
         *
    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)
  7. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

         * @param imports The packages/types to import from the parent realm, may be {@code null}.
         * @param filter The filter used to exclude certain plugin dependencies, may be {@code null}.
         */
        void setupPluginRealm(
                PluginDescriptor pluginDescriptor,
                MavenSession session,
                ClassLoader parent,
                List<String> imports,
                DependencyFilter filter)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    s/realm/ClassRealm.class package org.codehaus.plexus.classworlds.realm; public synchronized class ClassRealm extends java.net.URLClassLoader { private org.codehaus.plexus.classworlds.ClassWorld world; private String id; private java.util.TreeSet imports; private org.codehaus.plexus.classworlds.strategy.Strategy strategy; private ClassRealm parent; public void ClassRealm(org.codehaus.plexus.classworlds.ClassWorld, String); public void ClassRealm(org.codehaus.plexus.classworlds.ClassWorld, String,...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 41.5K bytes
    - Viewed (0)
Back to top