- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 2,840 for eProject (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java
* Registers the specified cache record for usage with the given project. Integrators can use the information * collected from this method in combination with a custom cache implementation to dispose unused records from the * cache. * * @param project The project that employs the plugin realm, must not be {@code null}. * @param record The cache record being used for the project, must not be {@code null}. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java
"beforeProjectExecution project-basic", // "beforeProjectLifecycleExecution project-basic", // "beforeMojoExecution project-basic:default-resources", // "afterMojoExecutionSuccess project-basic:default-resources", // "beforeMojoExecution project-basic:default-compile", // "afterMojoExecutionSuccess project-basic:default-compile", //Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 22.9K bytes - Viewed (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)); } } if (filtered.isEmpty() || filtered.size() == 1) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 19 16:34:39 UTC 2025 - 6.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DependencyContext.java
private volatile int lastDependencyArtifactCount = -1; public DependencyContext( MavenProject project, Collection<String> scopesToCollect, Collection<String> scopesToResolve) { this.project = project; scopesToCollectForCurrentProject = scopesToCollect; scopesToResolveForCurrentProject = scopesToResolve;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
impl/maven-core/src/test/resources-project-builder/baseuri-interpolation/pom.xml
specific language governing permissions and limitations under the License. --> <project> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.maven.its.mng3760</groupId> <artifactId>test1</artifactId> <version>1.0-SNAPSHOT</version> <name>Maven Integration Test :: MNG-3760</name> <description> Test interpolation of ${project.baseUri} </description> <properties>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java
MavenProject project = new MavenProject(model); project.setOriginalModel(model); ConsumerPomArtifactTransformer t = new ConsumerPomArtifactTransformer((s, p, f) -> { try (InputStream is = f.openStream()) { return DefaultConsumerPomBuilder.transformPom(new MavenStaxReader().read(is), project); } });
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Nov 06 18:32:25 UTC 2025 - 13.3K bytes - Viewed (0) -
docs/de/docs/virtual-environments.md
$ which python /home/user/code/awesome-project/.venv/bin/python ``` </div> Wenn es das `python`-Binary in `.venv/bin/python` anzeigt, innerhalb Ihres Projekts (in diesem Fall `awesome-project`), dann hat es funktioniert. 🎉 //// //// tab | Windows PowerShell <div class="termy"> ```console $ Get-Command python C:\Users\user\code\awesome-project\.venv\Scripts\python ``` </div>
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 02 17:32:56 UTC 2025 - 25.4K bytes - Viewed (0) -
impl/maven-core/src/site/apt/inheritance.apt
project. Each project should have a distinct artifactId. - [version] tells maven what release of this artifact we're trying to produce. The fact that a project has a distinct pom.xml should indicate a separate release cycle that is also distinct to that project, so a concrete version declaration is required. - [name] tells maven what the user-friendly name of this project is. The name
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/lifecycle/internal/concurrent/BuildStep.java
return Objects.equals(project, that.project) && Objects.equals(name, that.name); } @Override public int hashCode() { return Objects.hash(project, name); } @Override public String toString() { return "BuildStep[" + "project=" + project.getGroupId() + ":" + project.getArtifactId() + ", phase=" + name + ']';
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Apr 30 16:21:08 UTC 2025 - 4.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifact.java
private MavenProject project; public ProjectArtifact(MavenProject project) { super( project.getGroupId(), project.getArtifactId(), project.getVersion(), null, "pom", null, new PomArtifactHandler()); this.project = project; setFile(project.getFile());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.9K bytes - Viewed (0)