- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 2,594 for projectS (0.2 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionEvent.java
} public ProjectExecutionEvent(MavenSession session, MavenProject project, Throwable cause) { this(session, project, null, cause); } public ProjectExecutionEvent( MavenSession session, MavenProject project, List<MojoExecution> executionPlan, Throwable cause) { this.session = session; this.project = project; this.executionPlan = executionPlan; this.cause = cause; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
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) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (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) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 11.3K 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) -
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") {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Jul 13 08:32:01 UTC 2025 - 501 bytes - Viewed (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();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10.8K bytes - Viewed (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}. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java
* 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 Jan 10 07:09:12 UTC 2025 - 3.5K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupRootPlugin.kt
val globalExtension = project.extensions.create<TestFilesCleanupBuildServiceRootExtension>("testFilesCleanupRoot") project.gradle.taskGraph.whenReady { val testFilesCleanupService = project.gradle.sharedServices.registerIfAbsent("testFilesCleanupBuildService", TestFilesCleanupService::class.java) {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Jul 06 10:57:13 UTC 2023 - 3K bytes - Viewed (0) -
compat/maven-model-builder/src/site/apt/index.apt
Notice that the 5 URLs from the model (<<<project.url>>>, <<<project.scm.connection>>>, <<<project.scm.developerConnection>>>, <<<project.scm.url>>> and <<<project.distributionManagement.site.url>>>) have a special inheritance handling: ** if not configured in current model, the inherited value is the parent's one with current artifact id appended,
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 03 08:42:52 UTC 2025 - 13.2K bytes - Viewed (0)