Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,952 for dProject (0.04 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

         */
        List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive);
    
        /**
         * Gets the upstream projects of the specified project. An upstream project is a project that directly or indirectly
         * is a prerequisite of the given project.
         *
         * @param project The project whose upstream projects should be retrieved, must not be {@code null}.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingHelper.java

                throws InvalidRepositoryException;
    
        /**
         * Creates the project realm that hosts the build extensions of the specified model.
         *
         * @param project The project to create the project realm for, must not be {@code null}
         * @param model The model to create the project realm for, must not be {@code null}
         * @param request The project building request holding further settings like repository settings, must not be
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

            project.setArtifactId("maven-core");
            project.setName("Maven");
            project.setVersion("2.0-SNAPSHOT");
            project.setScm(new Scm());
            project.getScm().setConnection("scm-connection");
            project.addDependency(dependency1);
            project.addDependency(dependency2);
            project.setBuild(new Build());
    
            // Build up an artifactMap
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top