Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for subprojects (0.18 sec)

  1. maven-core/src/site/apt/configuration-management.apt

     their source trees set up in the same way as their colleagues.
    
     here's what I do currently in the netbeans part of the mavenide project to
     find the relevant subprojects/sibling projects. I check if the user has
     defined the maven.multiproject.includes property in any of his properties
     files for the current project. if yes. then I'm able to find projects that
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

          </description>
          <fields>
            <field xdoc.separator="blank">
              <name>modules</name>
              <version>4.0.0+</version>
              <description>The modules (sometimes called subprojects) to build as a part of this
                project. Each module listed is a relative path to the directory containing the module.
                To be consistent with the way default urls are calculated from parent, it is recommended
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

        private final ConcurrentMap<String, ConcurrentMap<String, ConcurrentMap<String, Object>>>
                pluginContextsByProjectAndPluginKey = new ConcurrentHashMap<>();
    
        public void setProjects(List<MavenProject> projects) {
            if (!projects.isEmpty()) {
                MavenProject first = projects.get(0);
                this.currentProject = ThreadLocal.withInitial(() -> first);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        private void testAppendOfInheritedPluginConfiguration(String test) throws Exception {
            PomTestWrapper pom = buildPom("plugin-config-append/" + test + "/subproject");
            String prefix = "build/plugins[1]/configuration/";
            assertEquals("PARENT-1", pom.getValue(prefix + "stringParams/stringParam[1]"));
    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)
  5. maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

            MavenSession session = new MavenSession(
                    getContainer(), configuration.getRepositorySession(), request, new DefaultMavenExecutionResult());
            session.setProjects(projects);
            session.setAllProjects(session.getProjects());
            session.setSession(defaultSessionFactory.newSession(session));
    
            SessionScope sessionScope = getContainer().lookup(SessionScope.class);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 11.7K bytes
    - Viewed (1)
  6. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            MavenSession session =
                    new MavenSession(container, repositorySession, request, new DefaultMavenExecutionResult());
            session.setProjects(Collections.<MavenProject>emptyList());
            return session;
        }
    
        @Test
        public void testTwoExpressions() throws Exception {
            MavenProject project = createDefaultProject();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                }
            }
    
            if (!graphResult.hasErrors()) {
                ProjectDependencyGraph projectDependencyGraph = graphResult.get();
                session.setProjects(projectDependencyGraph.getSortedProjects());
                session.setAllProjects(projectDependencyGraph.getAllProjects());
                session.setProjectDependencyGraph(projectDependencyGraph);
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                project.setPluginArtifactRepositories(request.getPluginArtifactRepositories());
                projects.add(project);
            }
    
            session.setProjects(projects);
            session.setAllProjects(session.getProjects());
    
            return session;
        }
    
        protected void initRepoSession(ProjectBuildingRequest request) throws Exception {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStubTest.java

            assertEquals(0, mavenProjects.size());
        }
    
        @Test
        void testBDependencies() {
            final List<MavenProject> bProjects = stub.getUpstreamProjects(ProjectDependencyGraphStub.B, false);
            assertEquals(1, bProjects.size());
            assertTrue(bProjects.contains(ProjectDependencyGraphStub.A));
        }
    
        @Test
        void testCDependencies() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilderTest.java

                    defaultMavenExecutionResult);
            final ProjectDependencyGraphStub dependencyGraphStub = new ProjectDependencyGraphStub();
            session.setProjectDependencyGraph(dependencyGraphStub);
            session.setProjects(dependencyGraphStub.getSortedProjects());
    
            LifecycleModuleBuilder moduleBuilder = container.lookup(LifecycleModuleBuilder.class);
            set(moduleBuilder, "mojoExecutor", mojoExecutor);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 4.1K bytes
    - Viewed (0)
Back to top