Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,855 for myproject (0.05 sec)

  1. compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertViolations(result, 0, 0, 2);
    
            assertEquals(
                    "'profiles.profile[exists-project-version].activation.file.exists' "
                            + "Failed to interpolate profile activation property ${project.version}/test.txt: "
                            + "${project.version} expressions are not supported during profile activation.",
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 33.9K bytes
    - Viewed (0)
  2. compat/pom.xml

        <module>maven-compat</module>
        <module>maven-toolchain-model</module>
        <module>maven-toolchain-builder</module>
      </modules>
    
      <properties>
        <project.directory>compat</project.directory>
      </properties>
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Nov 16 17:53:28 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java

            setGroupId(plugin.getGroupId());
            setArtifactId(plugin.getArtifactId());
    
            setRepositorySession(session.getRepositorySession());
    
            MavenProject project = session.getCurrentProject();
            if (project != null) {
                setRepositories(project.getRemotePluginRepositories());
            }
        }
    
        /**
         * Creates a request for the specified plugin using the given repository session and plugin repositories.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. 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)
  5. compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

    @Deprecated
    public class ActiveProjectArtifact implements Artifact {
        private final Artifact artifact;
    
        private final MavenProject project;
    
        public ActiveProjectArtifact(MavenProject project, Artifact artifact) {
            this.artifact = artifact;
            this.project = project;
    
            artifact.setFile(project.getArtifact().getFile());
            artifact.setResolved(true);
        }
    
        /** {@inheritDoc} */
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

         */
        @Nonnull
        Optional<Path> getPath();
    
        /**
         * Gets the source of the project to build.
         * This is an alternative to specifying a path, allowing the project to be built from
         * a model source such as a string or input stream.
         *
         * @return an optional containing the source of the project, or empty if not specified
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:30:49 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java

                for (MavenProject project : projects) {
                    if (moduleFrom.equals(project.getArtifactId())) {
                        Dependency dependency = new Dependency();
                        dependency.setArtifactId(moduleTo);
                        dependency.setGroupId(project.getGroupId());
                        dependency.setVersion(project.getVersion());
    
                        project.getModel().addDependency(dependency);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java

        // - project building exception
        // - invalid project model exception: list of markers
        // - xmlpull parser exception
        List<Throwable> getExceptions();
    
        MavenExecutionResult addException(Throwable e);
    
        boolean hasExceptions();
    
        /**
         * Gets the build summary for the specified project.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/test/resources/poms/factory/simple.xml

      </build>
    
      <profiles>
        <profile>
          <id>default</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
          </properties>
        </profile>
        <profile>
          <id>file</id>
          <activation>
            <file>
              <exists>simple.xml</exists>
            </file>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

                for (MavenProject project : projects) {
                    int len = lineLength
                            - project.getName().length()
                            - project.getPackaging().length()
                            - 2;
                    logger.info("{}{}[{}]", project.getName(), chars(' ', (len > 0) ? len : 1), project.getPackaging());
                }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 08 08:49:11 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top