- Sort Score
- Result 10 results
- Languages All
Results 51 - 54 of 54 for getArtifactId (0.06 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
return null; } } } File getTouchfile(Artifact artifact) { StringBuilder sb = new StringBuilder(128); sb.append(artifact.getArtifactId()); sb.append('-').append(artifact.getBaseVersion()); if (artifact.getClassifier() != null) { sb.append('-').append(artifact.getClassifier()); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Apr 22 22:13:51 UTC 2025 - 12.1K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
return new StringBuilder(128) .append((getGroupId() == null) ? "[unknown-group-id]" : getGroupId()) .append(":") .append((getArtifactId() == null) ? "[unknown-artifact-id]" : getArtifactId()) .append(":") .append((getVersion() == null) ? "[unknown-version]" : getVersion()) .toString(); } /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 07 14:32:16 UTC 2025 - 132.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
/** * {@return the project groupId}. */ @Nonnull String getGroupId(); /** * {@return the project artifactId}. */ @Nonnull String getArtifactId(); /** * {@return the project version}. */ @Nonnull String getVersion(); /** * {@return the project packaging}. * <p>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Feb 27 11:07:03 UTC 2025 - 10.6K bytes - Viewed (0) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed May 15 17:32:27 UTC 2024 - 15.8K bytes - Viewed (0)