Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,214 for built (0.16 sec)

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

         */
        @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.
         *
         * @return The project that was built or {@code null} if an error occurred and this result accompanies a
         *         {@link ProjectBuilderException}.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

         *
         * @param projectFile The POM file to build the project from, must not be {@code null}.
         * @param request The project building request that holds further parameters, must not be {@code null}.
         * @return The result of the project building, never {@code null}.
         * @throws ProjectBuildingException If the project descriptor could not be successfully built.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/builtin/builtin.go

    // The copy built-in function copies elements from a source slice into a
    // destination slice. (As a special case, it also will copy bytes from a
    // string to a slice of bytes.) The source and destination may overlap. Copy
    // returns the number of elements copied, which will be the minimum of
    // len(src) and len(dst).
    func copy(dst, src []Type) int
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

         */
        @Nonnull
        default SettingsBuilderResult build(
                @Nonnull Session session,
                @Nonnull Source globalSettingsSource,
                @Nonnull Source projectSettingsSource,
                @Nonnull Source userSettingsSource) {
            return build(
                    SettingsBuilderRequest.build(session, globalSettingsSource, projectSettingsSource, userSettingsSource));
        }
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * The head of returned list is result of {@link Project#getArtifacts()} method, so same applies here: the list can have
         * minimum of one element. The maximum number of elements is in turn dependent on build configuration and lifecycle
         * phase when this method was invoked (i.e. is javadoc jar built and attached, is sources jar built attached, are
         * all the artifact signed, etc.).
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java

             * new release), is NOT local to the currently built project. It may be reparable by updating given plugin
             * to new fixed version, or by dropping plugin use from currently built project.
             * <p>
             * Note: if a reactor build contains a plugin (with issues) and later that built plugin is used in build,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri May 26 16:22:12 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java

         * @param rootProject The root project that is being built.
         */
        void applyResumptionData(MavenExecutionRequest request, MavenProject rootProject);
    
        /**
         * Removes previously stored resumption data.
         * @param rootProject The root project that is being built.
         */
        void removeResumptionData(MavenProject rootProject);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java

     */
    package org.apache.maven.execution;
    
    import java.util.List;
    
    /**
     * This class holds the information required to enable resuming a Maven build with {@code --resume}.
     */
    public class BuildResumptionData {
        /**
         * The list of projects that remain to be built.
         */
        private final List<String> remainingProjects;
    
        public BuildResumptionData(final List<String> remainingProjects) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  9. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

      <expression>
        <syntax>project.pluginArtifacts</syntax>
        <configuration>
          <![CDATA[
    <build>
      <plugins>
        ...
      </plugins>
    </build>
        ]]></configuration>
        <description>
          <![CDATA[
          This is the list of Artifact instances for plugins used in the current build
          for this project.
    
          NOTE: This list may contain plugin Artifacts which are implied by the current POM's
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 5.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

         * - Just the plugin is being built with the -f <pom> flag.
         * - Because of inter-module dependency collection, all projects in the multi-module project are collected.
         * - The plugin is not yet installed in a repository.
         *
         * Therefore the build fails because the plugin is not found and plugins cannot be built in the same session.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 9.1K bytes
    - Viewed (0)
Back to top