Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for Modules (0.17 sec)

  1. maven-compat/src/test/java/org/apache/maven/project/inheritance/t12scm/ProjectInheritanceTest.java

            assertEquals(project1.getScm().getUrl(), project0.getScm().getUrl() + "/modules/p1");
            assertEquals(project1.getScm().getConnection(), project0.getScm().getConnection() + "/modules/p1");
            assertEquals(
                    project1.getScm().getDeveloperConnection(), project0.getScm().getDeveloperConnection() + "/modules/p1");
        }
    
        @Test
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * This method returns one of the values specified in the given collection.
         * 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>
         *
    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)
  3. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

            // JUnit has an "Automatic-Module-Name", so it appears on the module path.
            Map<PathType, List<Path>> dispatched = session.resolveDependencies(
                    coord, PathScope.TEST_COMPILE, Arrays.asList(JavaPathType.CLASSES, JavaPathType.MODULES));
            List<Path> classes = dispatched.get(JavaPathType.CLASSES);
            List<Path> modules = dispatched.get(JavaPathType.MODULES);
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.4K bytes
    - Viewed (2)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * Java does not accept the placement of two modules of the same name on the module-path.
         * So the modular test output directory usually needs to be placed in a {@code --path-module} option.
         *
         * <ul>
         *   <li>If the test output directory is modular, then:
         *     <ul>
         *       <li>If a test module name is identical to a main module name,
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         */
        private static final String MODULE_INFO = "module-info.class";
    
        /**
         * The attribute for automatic module name in {@code META-INF/MANIFEST.MF} files.
         */
        private static final Attributes.Name AUTO_MODULE_NAME = new Attributes.Name("Automatic-Module-Name");
    
        /**
         * Module information for the path specified at construction time.
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * This method returns one of the values specified in the given collection.
         * 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>
         *
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultTypeProvider.java

                            "tests",
                            false,
                            JavaPathType.CLASSES,
                            JavaPathType.PATCH_MODULE),
                    new DefaultType(Type.MODULAR_JAR, Language.JAVA_FAMILY, "jar", null, false, JavaPathType.MODULES),
                    new DefaultType(Type.CLASSPATH_JAR, Language.JAVA_FAMILY, "jar", null, false, JavaPathType.CLASSES),
                    // j2ee types
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         * If the JAR is modular, its module information are ignored.
         * This type is new in Maven 4.
         */
        String CLASSPATH_JAR = "classpath-jar";
    
        /**
         * Artifact type name for a JAR file to unconditionally place on the module-path.
         * If the JAR is not modular, then it is loaded by Java as an unnamed module.
         * This type is new in Maven 4.
         */
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Mar 29 09:32:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                    if (reactorContext.getReactorBuildStatus().isHalted()) {
                        break;
                    }
    
                    // MNG-6170: Only schedule other modules from reactor if we have more modules to build than one.
                    if (analyzer.getNumberOfBuilds() > 1) {
                        final List<MavenProject> newItemsThatCanBeBuilt =
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 9.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

            List<MavenProject> modules = requestPomProject.getCollectedProjects() != null
                    ? requestPomProject.getCollectedProjects()
                    : Collections.emptyList();
    
            List<MavenProject> result = new ArrayList<>(modules);
            result.add(requestPomProject);
            return result;
        }
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
Back to top