Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 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/test/resources-project-builder/plugin-config-append/with-profile/pom.xml

      <description>
        Test aggregation of list configuration items for build plugins when using
        'combine.children=append' attribute.
      </description>
    
      <modules>
        <module>subproject</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <!-- inherit via <pluginManagement> -->
              <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/xml-whitespace/sub/pom.xml

      <parent>
        <groupId>   org.apache.maven.its.mng4070   </groupId>
        <artifactId>  parent  </artifactId>
        <version>  1.0  </version>
      </parent>
    
      <artifactId>subproject</artifactId>
      <version>1.0</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4070 :: Child</name>
      <description>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven.its.mng2591</groupId>
        <artifactId>parent</artifactId>
        <version>1.0</version>
      </parent>
    
      <artifactId>subproject</artifactId>
      <version>1.0</version>
      <packaging>jar</packaging>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
Back to top