Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for POM (0.04 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

        }
    
        /**
         * Creates a new build source for the specified path.
         * Build sources are used for POM files of projects being built by Maven
         * in the filesystem and support resolving related POMs.
         *
         * @param path the path to the POM file or project directory
         * @return a new ModelSource instance configured as a build source
         * @throws NullPointerException if path is null
         */
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-07 00:45
    - 8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         *
         * @return the identifier of the project or an empty string if not known, never {@code null}
         */
        @Nonnull
        String getProjectId();
    
        /**
         * Gets the POM file from which the project was built.
         *
         * @return the optional POM file
         */
        @Nonnull
        Optional<Path> getPomFile();
    
        /**
         * Gets the project that was built.
         *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-01-29 08:17
    - 2.6K bytes
    - Viewed (0)
  3. .github/workflows/ci.yml

        name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }} on ${{ matrix.os }}"
        strategy:
          matrix:
            os: [ ubuntu-latest ]
            java: [ 8, 11, 17, 21 ]
            root-pom: [ 'pom.xml', 'android/pom.xml' ]
            include:
              - os: windows-latest
                java: 21
                root-pom: pom.xml
        runs-on: ${{ matrix.os }}
        env:
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-01 19:27
    - 4.5K bytes
    - Viewed (0)
  4. .github/workflows/maven.yml

          with:
            java-version: '21'
            distribution: 'temurin'
        - uses: actions/cache@v4
          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Checkout fess-parent
          uses: actions/checkout@v4
          with:
            repository: codelibs/fess-parent
    Registered: 2025-06-06 09:08
    - Last Modified: 2025-05-18 02:59
    - 1.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     * (they are usually downloaded during dependency collection). Those projects are loaded
     * from a Project Object Model (POM).</p>
     *
     * <p><dfn>Project Object Model</dfn> or <dfn>POM</dfn> refers to the information describing
     * all the information needed to build or consume a project. Those are usually loaded from
     * a file named {@code pom.xml} and loaded into a {@link org.apache.maven.api.model.Model Model}
     * instances.</p>
     *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-05 14:29
    - 7.7K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/RemoteRepository.java

     *
     * <h2>Repository Configuration</h2>
     *
     * <p>Repositories can be configured at various levels:</p><ol>
     * <li>POM: Repositories can be specified in the {@code pom.xml} file under the {@code <repositories>} and {@code <pluginRepositories>} sections.</li>
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-08-27 21:13
    - 3.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Repository.java

     *
     * <h2>Repository Configuration</h2>
     *
     * <p>Repositories can be configured at various levels:<ol>
     * <li>POM: Repositories can be specified in the {@code pom.xml} file under the {@code <repositories>} and {@code <pluginRepositories>} sections.</li>
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-08-27 21:13
    - 3.2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilder.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * @since 4.0.0
     */
    @Experimental
    public interface ProjectBuilder extends Service {
    
        /**
         * Creates a {@link org.apache.maven.api.Project} from a POM file.
         *
         * @param request {@link ProjectBuilderRequest}
         * @return the {@link ProjectBuilderResult} containing the built project and possible errors
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-11-16 20:36
    - 2.9K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

     */
    @Experimental
    @Immutable
    public interface ProjectBuilderRequest extends Request<Session> {
    
        /**
         * Gets the path to the project to build.
         * This is typically the path to a pom.xml file or a directory containing a pom.xml file.
         *
         * @return an optional containing the path to the project, or empty if not specified
         */
        @Nonnull
        Optional<Path> getPath();
    
        /**
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-03 13:33
    - 11.7K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/maven/conf/toolchains.xml

       | way you don't have to hardcode paths in your pom.xml.
       |
       | Every toolchain consist of 3 elements:
       | * type: the type of tool. An often used value is 'jdk'. Toolchains-aware
       |   plugins should document which type you must use.
       |
       | * provides: A list of key/value-pairs.
       |   Based on the toolchain-configuration in the pom.xml Maven will search for
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-08-22 14:47
    - 3.6K bytes
    - Viewed (0)
Back to top