- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 55 for getExtensions (0.1 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/aether/TypeRegistryAdapter.java
return (ArtifactType) type; } if (type != null) { return new DefaultType( type.id(), type.getLanguage(), type.getExtension(), type.getClassifier(), type.isIncludesDependencies(), type.getPathTypes().toArray(new PathType[0])); } return null; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultTypeRegistry.java
type = new DefaultType( id, languageRegistry.lookup(handler.getLanguage()).orElseGet(() -> handler::getLanguage), handler.getExtension(), handler.getClassifier(), handler.isIncludesDependencies(), JavaPathType.CLASSES, JavaPathType.MODULES); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/ArtifactClassRealmConstituent.java
return artifact.getGroupId(); } public String getArtifactId() { return artifact.getArtifactId(); } public String getType() { return artifact.getExtension(); } public String getClassifier() { return artifact.getClassifier(); } public String getVersion() { return artifact.getBaseVersion(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/ExtensionResolutionException.java
+ cause.getMessage(), cause); this.extension = extension; } public CoreExtension getExtension() { return extension; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/TransformedArtifactHandler.java
@Override public String getClassifier() { return classifier; } @Override public String getDirectory() { return null; } @Override public String getExtension() { return extension; } @Override public String getLanguage() { return "none"; } @Override public String getPackaging() { return packaging;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java
private boolean includesDependencies, addedToClasspath; public void setExtension(String extension) { this.extension = extension; } @Override public String getExtension() { return extension; } public void setDirectory(String directory) { this.directory = directory; } @Override public String getDirectory() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java
/** * Returns the file name extension of the artifact; * e.g. "jar", "pom", "xml", etc. * * @return the file extension */ String getExtension(); String getDirectory(); /** * Returns the default classifier used if a different one is not set in pom.xml. * * @return the classifier */ String getClassifier();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactory.java
session, artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion().asString(), artifact.getClassifier(), artifact.getExtension(), null)); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java
return allHandlers.computeIfAbsent(id, k -> { Type type = typeRegistry.require(id); return new DefaultArtifactHandler( id, type.getExtension(), type.getClassifier(), null, null, type.isIncludesDependencies(), type.getLanguage().id(),
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java
ArtifactRepository deploymentRepository, ArtifactRepository localRepository) throws ArtifactDeploymentException { String extension = artifact.getArtifactHandler().getExtension(); File source = new File(basedir, finalName + "." + extension); deploy(source, artifact, deploymentRepository, localRepository); } public void deploy(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0)