Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getSubprojects (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                    && profile.getDistributionManagement() == null
                    && profile.getModules().isEmpty()
                    && profile.getSubprojects().isEmpty()
                    && profile.getProperties().isEmpty()
                    && profile.getRepositories().isEmpty()
                    && profile.getPluginRepositories().isEmpty()
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Nov 27 07:40:26 GMT 2025
    - 21.2K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
            return Collections.unmodifiableList(getModel().getBuild().getPlugins());
        }
    
        public List<String> getModules() {
            if (!getModel().getDelegate().getSubprojects().isEmpty()) {
                return getModel().getDelegate().getSubprojects();
            }
            return getModel().getModules();
        }
    
        public PluginManagement getPluginManagement() {
            PluginManagement pluginMgmt = null;
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Aug 29 12:47:20 GMT 2025
    - 67K bytes
    - Click Count (0)
Back to Top