- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for goalPrefix (0.04 sec)
-
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadata.java
@Nullable private final String goalPrefix; @Nullable private final String name; PluginInfo(String groupId, String artifactId, String goalPrefix, String name) { this.groupId = groupId; this.artifactId = artifactId; this.goalPrefix = goalPrefix; this.name = name; } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/GroupRepositoryMetadata.java
} @Override public String getBaseVersion() { return null; } public void addPluginMapping(String goalPrefix, String artifactId) { addPluginMapping(goalPrefix, artifactId, artifactId); } public void addPluginMapping(String goalPrefix, String artifactId, String name) { List<Plugin> plugins = getMetadata().getPlugins(); boolean found = false;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.8K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
} else { return PATTERN_FILTER_1.matcher(artifactId).replaceAll(""); } } public String getGoalPrefix() { return goalPrefix; } public void setGoalPrefix(String goalPrefix) { this.goalPrefix = goalPrefix; } public void setVersion(String version) { this.version = version; } public String getVersion() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 16.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExceptionTest.java
MojoDescriptor mojoDescriptor = new MojoDescriptor(); mojoDescriptor.setGoal("goal"); PluginDescriptor pluginDescriptor = new PluginDescriptor(); pluginDescriptor.setGoalPrefix("goalPrefix"); pluginDescriptor.setArtifactId("artifactId"); mojoDescriptor.setPluginDescriptor(pluginDescriptor); Parameter parameter = new Parameter(); parameter.setType("java.lang.String[]");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 6.8K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadataGenerator.java
String groupId = mayGetChild(root, "groupId"); String artifactId = mayGetChild(root, "artifactId"); String goalPrefix = mayGetChild(root, "goalPrefix"); String name = mayGetChild(root, "name"); // sanity check: plugin descriptor extracted from artifact must have same GA
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 7.8K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/DuplicateMojoDescriptorException.java
public DuplicateMojoDescriptorException( String goalPrefix, String goal, String existingImplementation, String newImplementation) { super("Goal: " + goal + " already exists in the plugin descriptor for prefix: " + goalPrefix + System.lineSeparator() + "Existing implementation is: " + existingImplementationRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
compat/maven-plugin-api/src/test/resources/plugin.xml
under the License. --> <plugin> <description>plugin-description</description> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3-SNAPSHOT</version> <goalPrefix>jar</goalPrefix> <isolatedRealm>false</isolatedRealm> <inheritedByDefault>true</inheritedByDefault> <mojos> <mojo> <goal>jar</goal> <description>mojo-description</description>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
private String extractVersion(PlexusConfiguration c) { return c.getChild("version").getValue(); } private String extractGoalPrefix(PlexusConfiguration c) { return c.getChild("goalPrefix").getValue(); } private String extractName(PlexusConfiguration c) { return c.getChild("name").getValue(); } private String extractDescription(PlexusConfiguration c) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 17.5K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
<version>1.0.0+</version> <description>The version of the plugin.</description> <type>String</type> <required>true</required> </field> <field> <name>goalPrefix</name> <version>1.0.0+</version> <description></description> <type>String</type> </field> <field> <name>isolatedRealm</name>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:28:41 UTC 2025 - 24.8K bytes - Viewed (0)