- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 3,090 for bProject (0.05 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/project/DuplicateArtifactAttachmentException.java
private final MavenProject project; public DuplicateArtifactAttachmentException(MavenProject project, Artifact artifact) { super(constructMessage(project, artifact)); this.project = project; this.artifact = artifact; } private static String constructMessage(MavenProject project, Artifact artifact) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.9K bytes - Click Count (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
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.5K bytes - Click Count (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 + ']';
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Apr 30 16:21:08 GMT 2025 - 4.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/SmartProjectComparator.java
* the same weight, they are ordered by project ID for deterministic results. * * <p><b>Example:</b> * <p>Consider projects with dependencies: A → B → D, A → C → D * <ul> * <li>Project D: weight = 1 (no downstream dependencies)</li> * <li>Project B: weight = 2 (1 + max(D=1))</li> * <li>Project C: weight = 2 (1 + max(D=1))</li> * <li>Project A: weight = 3 (1 + max(B=2, C=2))</li> * </ul>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Aug 06 12:03:40 GMT 2025 - 4.6K bytes - Click Count (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;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java
private void injectPluginDeclarationFromProject(Plugin plugin, MavenProject project) { Plugin pluginInPom = findPlugin(plugin, project.getBuildPlugins()); if (pluginInPom == null && project.getPluginManagement() != null) { pluginInPom = findPlugin(plugin, project.getPluginManagement().getPlugins()); } if (pluginInPom != null) { if (plugin.getVersion() == null) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 11.3K bytes - Click Count (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());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java
} projectRealmCache.register(project, projectRealmKey, record); return record; } @Override public void selectProjectRealm(MavenProject project) { ClassLoader projectRealm = project.getClassRealm(); if (projectRealm == null) { projectRealm = classRealmManager.getCoreRealm();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 10.8K bytes - Click Count (0) -
okhttp-bom/build.gradle.kts
id("java-platform") } dependencies { constraints { project.rootProject.subprojects.forEach { subproject -> if (subproject.name != "okhttp-bom") { api(subproject) } } api("com.squareup.okhttp3:okhttp-jvm:${project.version}") api("com.squareup.okhttp3:okhttp-android:${project.version}") } } publishing { publications.create<MavenPublication>("maven") {
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Jul 13 08:32:01 GMT 2025 - 501 bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginArtifactsCache.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}. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.1K bytes - Click Count (0)