- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 89 for setSource (0.05 sec)
-
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
String projectId = extractProjectId(r); File sourcePomFile = r.getSource() != null && r.getSource().getPath() != null ? r.getSource().getPath().toFile() : null; results.add(new DefaultProjectBuildingResult(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java
} } assertNotNull(dependencyLocation, "missing dependency"); assertEquals( "org.apache.maven.its:bom:0.1", dependencyLocation.getSource().getModelId()); InputLocation pluginLocation = null; for (Plugin plugin : project.getBuildPlugins()) { if (plugin.getKey().equals("org.apache.maven.plugins:maven-clean-plugin")) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 17.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PrecedenceCoreExtensionSelector.java
} return List.copyOf(selectedExtensions.values()); } protected String formatLocation(InputLocation location) { return location.getSource().getLocation() + ":" + location.getLineNumber(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 15:32:43 UTC 2025 - 4.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
.map(MojoExecution::getPlugin) .filter(p -> p.getLocation("version") != null && p.getLocation("version").getSource() != null && defaulModelId.equals( p.getLocation("version").getSource().getModelId())) .distinct() .map(Plugin::getArtifactId) // managed by us, groupId is always o.a.m.plugins
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 10.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java
*/ public MojoException(Throwable cause) { super(cause); } public String getLongMessage() { return longMessage; } public Object getSource() { return source; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon May 13 09:53:45 UTC 2024 - 2.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
/** * Gets the source from which the model was read. * * @return The source from which the model was read, never {@code null}. */ @Nonnull ModelSource getSource(); /** * Gets the file model. * * @return the file model, never {@code null}. */ @Nonnull Model getFileModel(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 4.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
fillMojoDescriptor(session, project, mojoExecution); mojoExecutionConfigurator(mojoExecution) .configure(project, mojoExecution, MojoExecution.Source.CLI.equals(mojoExecution.getSource())); finalizeMojoConfiguration(mojoExecution); calculateForkedExecutions(mojoExecution, session, project, alreadyPlannedExecutions); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 26.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java
} @Override public ModelData intoCache(ModelData data) { Model model = (data.getModel() != null) ? data.getModel().clone() : null; return new ModelData(data.getSource(), model, data.getGroupId(), data.getArtifactId(), data.getVersion()); } @Override public ModelData fromCache(ModelData data) { return intoCache(data); } };Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java
this.columnNumber = columnNumber; this.modelId = (modelId != null) ? modelId : ""; this.exception = exception; this.version = version; } @Override public String getSource() { return source; } @Override public int getLineNumber() { return lineNumber; } @Override public int getColumnNumber() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java
this.executionId = null; } /** * Gets the source of this execution. * * @return The source of this execution or {@code null} if unknown. */ public Source getSource() { return source; } public String getExecutionId() { return executionId; } public Plugin getPlugin() { if (mojoDescriptor != null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.2K bytes - Viewed (0)