- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 3,415 for Project (0.08 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java
* * @param project The project being summarized, must not be {@code null}. * @param execTime The exec time of the project in milliseconds. * @param wallTime The wall time of the project in milliseconds. */ protected BuildSummary(MavenProject project, Duration execTime, Duration wallTime) { this.project = Objects.requireNonNull(project, "project cannot be null");Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/InternalJavaRestTestPlugin.java
*/ public class InternalJavaRestTestPlugin implements Plugin<Project> { public static final String SOURCE_SET_NAME = "javaRestTest"; @Override public void apply(Project project) { project.getPluginManager().apply(RestTestBasePlugin.class); // create source set SourceSetContainer sourceSets = project.getExtensions().getByType(SourceSetContainer.class);
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Sep 13 18:10:22 GMT 2021 - 1.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
List<MavenProject> filtered = new ArrayList<>(projects.size()); for (MavenProject project : projects) { if (whiteList.containsKey(project)) { filtered.add(project); } else if (!transitive) { filtered.addAll(upstream ? getUpstreamProjects(project, false) : getDownstreamProjects(project, false)); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jun 19 16:34:39 GMT 2025 - 6.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java
boolean hasExceptions(); /** * Gets the build summary for the specified project. * * @param project The project to get the build summary for, must not be {@code null}. * @return The build summary for the project or {@code null} if the project has not been built (yet). */ BuildSummary getBuildSummary(MavenProject project); /** * Add the specified build summary. *Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java
*/ public BuildSuccess(MavenProject project, long time) { this(project, Duration.ofMillis(time)); } /** * Creates a new build summary for the specified project. * * @param project The project being summarized, must not be {@code null}. * @param time The build time of the project in milliseconds. */ public BuildSuccess(MavenProject project, Duration time) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 2.1K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java
File f = getFileForClasspathResource(DIR + "project-with-scoped-dependencies.xml"); MavenProject project = getProjectWithDependencies(f); Artifact artifact; assertNotNull(project, "Test project can't be null!"); checkArtifactIdScope(project, "provided", "provided"); checkArtifactIdScope(project, "test", "test"); checkArtifactIdScope(project, "compile", "compile");
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 6.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ValidateRestSpecPlugin.java
task.setReport(new File(project.getBuildDir(), "reports/validateJson.txt")); }); Provider<ValidateJsonNoKeywordsTask> validateNoKeywordsTask = project.getTasks() .register("validateNoKeywords", ValidateJsonNoKeywordsTask.class, task -> { task.setInputFiles(Util.getJavaTestAndMainSourceResources(project, filter -> {
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutionException.java
super(message); this.project = project; } public LifecycleExecutionException(String message, MojoExecution execution, MavenProject project) { super(message); this.project = project; } public LifecycleExecutionException(String message, MojoExecution execution, MavenProject project, Throwable cause) { super(message, cause);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 3.5K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
initRepoSession(request, configuration); List<MavenProject> projects = new ArrayList<>(); if (pom != null) { MavenProject project = projectBuilder.build(pom, configuration).getProject(); projects.add(project); if (includeModules) { for (String module : project.getModules()) { File modulePom = new File(pom.getParentFile(), module);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 12.1K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantBasePlugin.java
static class VagrantManagerPlugin implements Plugin<Project>, TaskActionListener, TaskExecutionListener { @Override public void apply(Project project) { if (project != project.getRootProject()) { throw new IllegalArgumentException("VagrantManagerPlugin can only be applied to the root project of a build"); } project.getGradle().addListener(this); }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 6.1K bytes - Click Count (0)