Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for pluginGroups (0.04 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

            assertEquals(3, pluginGroups.size());
            assertEquals("org.apache.maven.plugins", pluginGroups.get(0));
            assertEquals("org.codehaus.modello", pluginGroups.get(1));
            assertEquals("org.codehaus.plexus", pluginGroups.get(2));
        }
    
        @Test
        void testRoundTripProfiles() {
            Random entropy = new Random();
            ActivationFile af = ActivationFile.newBuilder()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/examples/simple-project/settings.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <settings xmlns='http://maven.apache.org/SETTINGS/1.0.0'>
      <pluginGroups>
        <pluginGroup>org.codehaus.tycho</pluginGroup>
        <pluginGroup>org.sonatype.pwt</pluginGroup>
      </pluginGroups>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Jul 21 17:09:50 UTC 2025
    - 992 bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java

        }
    
        @Override
        public List<String> getPluginGroups() {
            return pluginGroups;
        }
    
        @Override
        public DefaultPluginPrefixRequest setPluginGroups(List<String> pluginGroups) {
            if (pluginGroups != null) {
                this.pluginGroups = Collections.unmodifiableList(pluginGroups);
            } else {
                this.pluginGroups = Collections.emptyList();
            }
    
            return this;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 4K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/NoPluginFoundForPrefixException.java

        public NoPluginFoundForPrefixException(
                String prefix,
                List<String> pluginGroups,
                LocalRepository localRepository,
                List<RemoteRepository> remoteRepositories) {
            super("No plugin found for prefix '" + prefix + "' in the current project and in the plugin groups "
                    + pluginGroups + " available from the repositories " + format(localRepository, remoteRepositories));
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java

        /**
         * Sets the list of group ids to scan for the plugin prefix.
         *
         * @param pluginGroups The list of group ids to scan for the plugin prefix, may be {@code null}.
         * @return This request, never {@code null}.
         */
        PluginPrefixRequest setPluginGroups(List<String> pluginGroups);
    
        /**
         * Gets the POM whose build plugins are to be scanned for the prefix.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top