- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 19 for setLocations (0.05 seconds)
-
compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java
} } result.setLocations(locations); return result; } // -- InputLocation merge( InputLocation, InputLocation, java.util.Collection ) /** * * * @param locations */ public void setLocations(java.util.Map<Object, InputLocation> locations) { this.locations = locations; } // -- void setLocations( java.util.Map ) /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 13.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java
plugin.setArtifactId(gs.artifactId); plugin.setVersion(gs.version); plugin.setLocation("", location); plugin.setLocation("groupId", location); plugin.setLocation("artifactId", location); plugin.setLocation("version", location); Plugin existing = plugins.get(plugin); if (existing != null) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 9K bytes - Click Count (0) -
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Apr 03 11:21:39 GMT 2025 - 99.2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java
if (sourceDominant) { target.setUrl(src); target.setLocation("url", source.getLocation("url")); } else if (target.getUrl() == null) { target.setUrl(extrapolateChildUrl(src, source.isChildProjectUrlInheritAppendPath(), context)); target.setLocation("url", source.getLocation("url")); } } } /*
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 21.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
build = new Build(); model.setBuild(build); model.setLocation("build", location); } Plugin sitePlugin = findSitePlugin(build); if (sitePlugin == null) { sitePlugin = new Plugin(); sitePlugin.setArtifactId("maven-site-plugin"); sitePlugin.setLocation("artifactId", location);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 9.4K bytes - Click Count (0) -
compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java
} // -- String getModelId() /** * Set the path/URL of the POM or {@code null} if unknown. * * @param location */ public void setLocation(String location) { this.location = location; } // -- void setLocation( String ) /** * Set the identifier of the POM in the format {@code * <groupId>:<artifactId>:<version>}. * * @param modelId */
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 5.6K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
problems.add(new ModelProblemCollectorRequest(Severity.ERROR, Version.BASE) .setMessage("Failed to interpolate value " + value + ": " + e.getMessage()) .setLocation(target.getLocation(locationKey)) .setException(e)); } } } for (Profile profile : interpolatedActivations) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:08 GMT 2025 - 55.3K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java
putAll(merged, source.getProperties(), CHILD_DIRECTORY_PROPERTY); merged.putAll(target.getProperties()); } target.setProperties(merged); target.setLocation( "properties", InputLocation.merge( target.getLocation("properties"), source.getLocation("properties"), sourceDominant)); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 13.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector.java
if (defaultPlugins == null) { problems.add(new ModelProblemCollectorRequest(Severity.ERROR, Version.BASE) .setMessage("Unknown packaging: " + packaging) .setLocation(model.getLocation("packaging"))); } else if (!defaultPlugins.isEmpty()) { Model lifecycleModel = new Model(); lifecycleModel.setBuild(new Build());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.1K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/PropertyProfileActivator.java
problems.add(new ModelProblemCollectorRequest(Severity.ERROR, Version.BASE) .setMessage("The property name is required to activate the profile " + profile.getId()) .setLocation(property.getLocation(""))); return false; } String sysValue = context.getUserProperties().get(name); if (sysValue == null) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.8K bytes - Click Count (0)