- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 3,144 for projet (0.07 sec)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java
setGroupId(plugin.getGroupId()); setArtifactId(plugin.getArtifactId()); setRepositorySession(session.getRepositorySession()); MavenProject project = session.getCurrentProject(); if (project != null) { setRepositories(project.getRemotePluginRepositories()); } } /** * Creates a request for the specified plugin using the given repository session and plugin repositories.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory.java
this.artifactFactory = artifactFactory; } @Override public Set<Artifact> createArtifacts(MavenProject project) throws InvalidDependencyVersionException { return createArtifacts(artifactFactory, project.getDependencies(), null, null, project); } public static Set<Artifact> createArtifacts( ArtifactFactory artifactFactory, List<Dependency> dependencies,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 6.2K bytes - Viewed (0) -
compat/pom.xml
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Nov 16 17:53:28 UTC 2025 - 1.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
// Ensure environment variables are not set (in real scenario) // In this test, we expect IOException when project ID is blank try { conn.connect(); fail("Should throw IOException when project ID is not set"); } catch (IOException e) { assertTrue(e.getMessage().contains("GCS_PROJECT_ID is blank")); } } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java
/** * Gets the project settings file. * * @return The project settings file or {@code null} if none. * @since 4.0.0 */ File getProjectSettingsFile(); /** * Sets the project settings file. A non-existent settings file is equivalent to empty settings. * * @param projectSettingsFile The project settings file, may be {@code null} to disable project settings.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompileExtension.kt
*/ package gradlebuild.jvm import org.gradle.api.NamedDomainObjectContainer import org.gradle.api.NamedDomainObjectProvider import org.gradle.api.Project import org.gradle.api.tasks.SourceSet /** * A container of [JvmCompilation]s for a JVM project. * * Utility methods are provided to add compilations based on existing [SourceSet]s. */ abstract class JvmCompileExtension { companion object {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Jun 24 14:00:52 UTC 2025 - 1.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* {@code profile > project}, hence active profile property may override project property. * <p> * The caller of this method should decide whether there is a project in scope (hence, a project instance * needs to be passed) or not. * * @param project {@link Project} or {@code null}. * @return the effective properties, never {@code null} */ @NonnullRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/factory/simple.xml
</build> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </profile> <profile> <id>file</id> <activation> <file> <exists>simple.xml</exists> </file>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectSegment.java
private final List<MavenProject> transitiveUpstreamProjects; public ProjectSegment(MavenProject project, TaskSegment taskSegment, MavenSession copiedSession) { this.project = project; this.taskSegment = taskSegment; this.session = copiedSession; final ProjectDependencyGraph dependencyGraph = getSession().getProjectDependencyGraph();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
sources = new LinkedHashSet<>(project.sources); if (project.getModel() != null) { setModel(project.getModel().clone()); } if (project.getOriginalModel() != null) { setOriginalModel(project.getOriginalModel()); } setExecutionRoot(project.isExecutionRoot()); if (project.getArtifact() != null) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0)