- Sort Score
- Num 10 results
- Language All
Results 481 - 490 of 582 for artifactId2 (0.07 seconds)
-
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifeCyclePluginAnalyzerStub.java
plugins = Collections.emptySet(); } return plugins; } private Plugin newPlugin(String artifactId, String... goals) { Plugin plugin = new Plugin(); plugin.setGroupId("org.apache.maven.plugins"); plugin.setArtifactId(artifactId); for (String goal : goals) { PluginExecution pluginExecution = new PluginExecution();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.5K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java
import org.apache.maven.artifact.versioning.OverConstrainedVersionException; import org.apache.maven.artifact.versioning.VersionRange; /** * Maven Artifact interface. Notice that it mixes artifact definition concepts (groupId, artifactId, version) * with dependency information (version range, scope). */ public interface Artifact extends Comparable<Artifact> { @Deprecated(since = "4.0.0") String RELEASE_VERSION = "RELEASE";
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.1K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/DefaultProjectBuilderTest.java
assertEquals("", projectId, "Should return empty string when all models are null"); } private Model createMockModel(String groupId, String artifactId, String version) { return Model.newBuilder() .groupId(groupId) .artifactId(artifactId) .version(version) .packaging("jar") .build(); } /**
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 7.5K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/factory/DefaultArtifactFactoryTest.java
Artifact artifact = factory.createDependencyArtifact( "test-grp", "test-artifact", VersionRange.createFromVersion("1.0"), "type", null, "system", "provided"); Artifact artifact2 = factory.createDependencyArtifact( "test-grp", "test-artifact-2", VersionRange.createFromVersion("1.0"), "type", null, "system", "test"); Artifact artifact3 = factory.createDependencyArtifact(
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.7K bytes - Click Count (0) -
api/maven-api-cli/src/main/mdo/core-extensions.mdo
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun May 18 09:15:56 GMT 2025 - 4.4K bytes - Click Count (0) -
docs/changelogs/changelog_2x.md
bodies for debugging. It requires this Maven dependency: ```xml <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>logging-interceptor</artifactId> <version>2.6.0</version> </dependency> ``` Configure basic logging like this: ```java HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor();Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Feb 06 02:19:09 GMT 2022 - 26.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionRequest.java
*/ String getArtifactId(); /** * Sets the artifact id of the plugin. * * @param artifactId The artifact id of the plugin. * @return This request, never {@code null}. */ PluginVersionRequest setArtifactId(String artifactId); /** * Gets the POM whose build plugins are to be scanned for the version. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.5K bytes - Click Count (0) -
impl/maven-core/src/test/remote-repo/org/apache/apache/1/apache-1.pom
<!-- Shared parent. Doesn't define a lot of things about Apache like general mailing lists, but does define the settings common to all projects at Apache --> <groupId>org.apache</groupId> <artifactId>apache</artifactId> <version>1</version> <packaging>pom</packaging> <name>The Apache Software Foundation</name> <description>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.3K bytes - Click Count (0) -
api/maven-api-model/src/main/mdo/maven.mdo
/** * @param groupId the group ID of the plugin in the repository * @param artifactId the artifact ID of the reporting plugin in the repository * @return the key of the plugin, ie {@code groupId:artifactId} */ public static String constructKey(String groupId, String artifactId) { return groupId + ":" + artifactId; } ]]> </code> </codeSegment>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Nov 26 03:07:35 GMT 2025 - 133.3K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
.evaluate("${mojo.plugin.artifact.artifactId}"); System.out.println("Result: " + result); assertSame( exec.getPlugin().getArtifact().getArtifactId(), result, "${plugin.artifactId} expression does not return plugin descriptor's artifactId."); } @Test
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 26 19:31:34 GMT 2025 - 19.3K bytes - Click Count (0)