Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pluginGroups (0.09 sec)

  1. compat/maven-embedder/src/examples/simple-project/settings.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <settings>
      <pluginGroups>
        <pluginGroup>org.codehaus.tycho</pluginGroup>
        <pluginGroup>org.sonatype.pwt</pluginGroup>
      </pluginGroups>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 945 bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        public List<String> getPluginGroups() {
            if (pluginGroups == null) {
                pluginGroups = new ArrayList<>();
            }
    
            return pluginGroups;
        }
    
        @Override
        public MavenExecutionRequest setPluginGroups(List<String> pluginGroups) {
            if (pluginGroups != null) {
                this.pluginGroups = new ArrayList<>(pluginGroups);
            } else {
                this.pluginGroups = null;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/conf/settings.xml

        <pluginGroup>com.your.plugins</pluginGroup>
        -->
      </pluginGroups>
    
      <!-- TODO Since when can proxies be selected as depicted? -->
      <!-- proxies
       | This is a list of proxies which can be used on this machine to connect to the network.
       | Unless otherwise specified (by system property or command-line switch), the first proxy
       | specification in this list marked as active will be used.
       |-->
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 15:53:41 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        // Plugin groups
        List<String> getPluginGroups();
    
        MavenExecutionRequest setPluginGroups(List<String> pluginGroups);
    
        MavenExecutionRequest addPluginGroup(String pluginGroup);
    
        MavenExecutionRequest addPluginGroups(List<String> pluginGroups);
    
        boolean isProjectPresent();
    
        MavenExecutionRequest setProjectPresent(boolean isProjectPresent);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

                            .map(SettingsUtilsV4::convertToSettingsProfile)
                            .collect(Collectors.toList()))
                    .activeProfiles(request.getActiveProfiles())
                    .pluginGroups(request.getPluginGroups())
                    .build());
        }
    
        @Deprecated
        public List<MavenProject> getSortedProjects() {
            return getProjects();
        }
    
        @Deprecated
        //
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. api/maven-api-settings/src/main/mdo/settings.mdo

              </description>
              <association>
                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
              <name>pluginGroups</name>
              <version>1.0.0+</version>
              <description>
                List of groupIds to search for a plugin when that plugin
                groupId is not explicitly provided.
              </description>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Oct 08 13:46:42 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top