Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 2,966 for myproject (0.06 sec)

  1. compat/maven-compat/src/test/resources/inheritance-repo/t09/p0/p1/pom.xml

      <build>
        <plugins>
          <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <configuration>
              <tasks><echo>${project.parent.basedir}</echo></tasks>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 739 bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/project/PluginConnectionSimpleTest.java

     * This test specifically verifies the fix for the <a href="https://github.com/apache/maven/pull/2530">issue</a> where
     * getPlugin() was returning disconnected Plugin objects.
     */
    class PluginConnectionSimpleTest {
    
        @Test
        void testPluginModificationPersistsInModel() {
            // Create a test project with a plugin
            Model model = new Model();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jul 04 12:50:13 UTC 2025
    - 5K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecyclePluginResolver.java

            this.pluginVersionResolver = pluginVersionResolver;
        }
    
        public void resolveMissingPluginVersions(MavenProject project, MavenSession session)
                throws PluginVersionResolutionException {
            Map<String, String> versions = new HashMap<>(64);
    
            for (Plugin plugin : project.getBuildPlugins()) {
                if (plugin.getVersion() == 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)
  4. impl/maven-core/src/test/java/org/apache/maven/project/RepositoryLeakageTest.java

                System.out.println("Child1 project repositories:");
                child1Project
                        .getRemoteArtifactRepositories()
                        .forEach(repo -> System.out.println("  - " + repo.getId() + " (" + repo.getUrl() + ")"));
    
                System.out.println("Child2 project repositories:");
                child2Project
                        .getRemoteArtifactRepositories()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/project/collector/ProjectsSelector.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.collector;
    
    import java.io.File;
    import java.util.List;
    
    import org.apache.maven.execution.MavenExecutionRequest;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuildingException;
    
    /**
     * Facade to select projects for a given set of pom.xml files.
     */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

     * <ul>
     *     <li>{@code jar}: Packages the project as a Java Archive (JAR) file.</li>
     *     <li>{@code war}: Packages the project as a Web Application Archive (WAR) file.</li>
     *     <li>{@code pom}: Indicates that the project does not produce a deployable artifact but is used for dependency management or as an aggregator.</li>
     *     <li>{@code maven-plugin}: Packages the project as a Maven plugin.</li>
     * </ul>
     *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

    import org.apache.maven.project.DefaultProjectBuildingRequest;
    import org.apache.maven.project.ProjectBuildingException;
    import org.apache.maven.project.ProjectBuildingRequest;
    import org.apache.maven.project.ProjectBuildingResult;
    
    @Named
    @Singleton
    public class DefaultProjectBuilder implements ProjectBuilder {
    
        private final org.apache.maven.project.ProjectBuilder builder;
    
        @Inject
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Sep 13 09:44:11 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. 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)
  9. compat/maven-compat/src/test/resources/inheritance-repo/t09/p0/p2/pom.xml

      <build>
        <plugins>
          <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <configuration>
              <tasks><echo>${project.parent.basedir}</echo></tasks>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 877 bytes
    - Viewed (0)
  10. compat/maven-compat/src/test/resources/inheritance-repo/t10/p0/p1/pom.xml

      <build>
        <plugins>
          <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <configuration>
              <tasks><echo>${project.parent.basedir}</echo></tasks>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 877 bytes
    - Viewed (0)
Back to top