- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getDistributionManagement (0.33 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
builder.properties(null).reporting(null); if (model.getDistributionManagement() != null && model.getDistributionManagement().getRelocation() != null) { // keep relocation only builder.distributionManagement(DistributionManagement.newBuilder() .relocation(model.getDistributionManagement().getRelocation()) .build()); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Nov 27 07:40:26 GMT 2025 - 21.2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
} if (project != null) { Relocation relocation = null; DistributionManagement distMgmt = project.getModel().getDistributionManagement(); if (distMgmt != null) { relocation = distMgmt.getRelocation(); artifact.setDownloadUrl(distMgmt.getDownloadUrl());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 25 12:03:50 GMT 2025 - 30.4K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
} } private void visit(ModelBase modelBase) { if (modelBase != null) { visit(modelBase.getModules()); visit(modelBase.getDistributionManagement()); visit(modelBase.getProperties()); visit(modelBase.getDependencyManagement()); for (Dependency dependency : modelBase.getDependencies()) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 43.1K bytes - Click Count (0)