- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for pluginGroups (0.13 seconds)
-
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()
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 6.7K bytes - Click Count (0) -
compat/maven-embedder/src/examples/simple-project/settings.xml
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Jul 21 17:09:50 GMT 2025 - 992 bytes - Click Count (0) -
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; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 4K bytes - Click Count (0) -
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)); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.4K bytes - Click Count (0) -
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. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.6K bytes - Click Count (0)