- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 42 for getProject (0.09 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
} configuration.setRepositorySession(legacySupport.getRepositorySession()); project = projectBuilder.build(pomArtifact, configuration).getProject(); } catch (ProjectBuildingException e) { ModelProblem missingParentPom = hasMissingParentPom(e); if (missingParentPom != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java
task.setGroup("documentation"); int webserverPort = 8000; task.getJavaLauncher().set( task.getProject().getExtensions().getByType(JavaToolchainService.class) .launcherFor(spec -> spec.getLanguageVersion().set(JavaLanguageVersion.of(21))) );
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Apr 17 20:04:00 UTC 2024 - 7.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java
logSummary(context, summary, references, ""); if (exception instanceof LifecycleExecutionException) { failedProjects.add(((LifecycleExecutionException) exception).getProject()); } } context.logger.error(""); if (!context.invokerRequest.options().showErrors().orElse(false)) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
return result; } result.setTopologicallySortedProjects(session.getProjects()); result.setProject(session.getTopLevelProject()); validatePrerequisitesForNonMavenPluginProjects(session.getProjects()); validateRequiredProfiles(session, request.getProfileActivation()); if (session.getResult().hasExceptions()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 27.5K bytes - Viewed (1) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
} private Stream<ProjectActivationSettings> getProjects(final Predicate<ActivationSettings> predicate) { return this.activations.stream().filter(activation -> predicate.test(activation.activationSettings)); } private Set<String> getProjectSelectors(final Predicate<ActivationSettings> predicate) { return getProjects(predicate).map(activation -> activation.selector).collect(toSet()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java
if (session.getProjectDependencyGraph() != null || session.getProjects() != null) { ProjectDependencyGraph graph = new DefaultProjectDependencyGraph(session.getAllProjects()); if (session.getProjects() != null) { graph = new FilteredProjectDependencyGraph(graph, session.getProjects()); } result = Result.success(graph); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 18.6K bytes - Viewed (0) -
android/guava/src/com/google/common/annotations/GwtIncompatible.java
import java.lang.annotation.Target; /** * The presence of this annotation on an API indicates that the method may not be used with * the <a href="http://www.gwtproject.org/">Google Web Toolkit</a> (GWT). * * <p>This annotation behaves identically to <a href= * "http://www.gwtproject.org/javadoc/latest/com/google/gwt/core/shared/GwtIncompatible.html">the * {@code @GwtIncompatible} annotation in GWT itself</a>. * * @author Charles Fry */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Dec 16 19:54:45 UTC 2020 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Partially.java
*/ @GwtCompatible @ElementTypesAreNonnullByDefault final class Partially { /** * The presence of this annotation on an API indicates that the method <i>may</i> be used with the * <a href="http://www.gwtproject.org/">Google Web Toolkit</a> (GWT) but that it has <i>some * restrictions</i>. */ @Retention(RetentionPolicy.CLASS) @Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD})
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed May 05 22:27:35 UTC 2021 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
public Properties getSystemProperties() { return request.getSystemProperties(); } public Settings getSettings() { return settings; } public List<MavenProject> getProjects() { return projects; } /** * @deprecated use {@link #getTopDirectory()} ()} */ @Deprecated public String getExecutionRootDirectory() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.6K bytes - Viewed (0)