- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 67 for setLocation (0.06 seconds)
-
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
merged.putAll(target.getProperties()); } target.setProperties(merged); target.setLocation( "properties", InputLocation.merge( target.getLocation("properties"), source.getLocation("properties"), sourceDominant)); } protected void mergeDistributionManagement( DistributionManagement target,
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
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) -
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-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
Xpp3Dom dom = new Xpp3Dom("reportPlugin", plugin.getLocation("")); addDom(dom, "groupId", plugin.getGroupId(), plugin.getLocation("groupId")); addDom(dom, "artifactId", plugin.getArtifactId(), plugin.getLocation("artifactId")); addDom(dom, "version", plugin.getVersion(), plugin.getLocation("version")); Xpp3Dom configuration = (Xpp3Dom) plugin.getConfiguration();
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
source.setModelId(ModelProblemUtils.toId(model)); source.setLocation(modelSource.getLocation()); } } catch (ModelParseException e) { problems.add(new ModelProblemCollectorRequest(Severity.FATAL, Version.BASE) .setMessage("Non-parseable POM " + modelSource.getLocation() + ": " + e.getMessage()) .setException(e));
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
merged.putAll(target.getProperties()); } target.setProperties(merged); target.setLocation( "properties", InputLocation.merge( target.getLocation("properties"), source.getLocation("properties"), sourceDominant)); } private void putAll(Map<Object, Object> s, Map<Object, Object> t, Object excludeKey) {
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) { sysValue = context.getSystemProperties().get(name);
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) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java
problems.add(new ModelProblemCollectorRequest(Severity.ERROR, Version.BASE) .setMessage("Failed to determine Java version for profile " + profile.getId()) .setLocation(activation.getLocation("jdk"))); return false; } if (jdk.startsWith("!")) { return !version.startsWith(jdk.substring(1)); } else if (isRange(jdk)) { try {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 6.6K bytes - Click Count (0)