Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Wain (0.02 sec)

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

        /**
         * {@return in which context the source files will be used}.
         * Not to be confused with dependency scope.
         * The default value is {@code "main"}.
         *
         * @see ProjectScope#MAIN
         */
        default ProjectScope scope() {
            return ProjectScope.MAIN;
        }
    
        /**
         * {@return the language of the source files}.
         * The default value is {@code "java"}.
         *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-05-20 11:54
    - 6.5K bytes
    - Viewed (0)
  2. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/package-info.java

     * specific language governing permissions and limitations
     * under the License.
     */
    
    /**
     * Provides the API for the Maven build tool ({@code mvn}).
     *
     * <p>This package contains interfaces and classes specific to the main Maven build
     * tool, which is responsible for project build lifecycle execution and dependency management.</p>
     *
     * <p>Key features include:</p>
     * <ul>
     *   <li>Build lifecycle execution control</li>
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-04 14:17
    - 1.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Shortcut for {@code getService(DependencyResolver.class).flatten(...)}.
         *
         * @param node node for which to get a flattened list
         * @param scope build path scope (main compile, test compile, etc.) of desired nodes
         * @return flattened list of node with the given build path scope
         * @throws org.apache.maven.api.services.DependencyResolverException if the dependency flattening failed
         *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-19 14:33
    - 36.2K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    + Fork the repository on GitHub.
    
    Making and Submitting Changes
    --------------
    
    We accept Pull Requests via GitHub. The [developer mailing list][dev-ml-list] is the
    main channel of communication for contributors.  
    There are some guidelines which will make applying PRs easier for us:
    + Create a topic branch from where you want to base your work (this is usually the master branch).
    Registered: 2025-05-24 08:56
    - Last Modified: 2021-10-10 09:48
    - 4.7K bytes
    - Viewed (0)
  5. README.md

    Solr has become a top-level Apache project and main line 
    development for Lucene and Solr is happening in each 
    project's git repository now:
    
    - Lucene: <https://gitbox.apache.org/repos/asf/lucene.git>
    - Solr: <https://gitbox.apache.org/repos/asf/solr.git>
    
    If you're seeing this message then switch the development to 'main':
    git checkout main
    
    Development for branch 8x remains in the shared repository:
    
    Registered: 2025-05-24 08:56
    - Last Modified: 2021-03-10 10:02
    - 1.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/ProducedArtifact.java

     *     <li>{@linkplain Project#getPomArtifact() the project POM artifact}</li>
     *     <li>{@linkplain Project#getMainArtifact() the main artifact}</li>
     *     <li>{@linkplain org.apache.maven.api.services.ProjectManager#attachArtifact(Session, Project, Path) artifacts to be attached to a project}</li>
     * </ul>
     *
     * <p>For the main artifact and attached artifacts, the
     * {@link org.apache.maven.api.services.ArtifactManager ArtifactManager} service must be used
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-08-27 21:13
    - 1.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/cache/package-info.java

     * <p>
     * This package contains the core components for implementing and managing caches in Maven:
     * <ul>
     *   <li>{@link org.apache.maven.api.cache.RequestCache} - The main interface for caching request results</li>
     *   <li>{@link org.apache.maven.api.cache.RequestCacheFactory} - Factory for creating cache instances</li>
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-07 00:45
    - 2.3K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/ProjectScope.java

     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    @SuppressWarnings("checkstyle:InterfaceIsType")
    public interface ProjectScope extends ExtensibleEnum {
    
        /**
         * Main scope.
         */
        ProjectScope MAIN = projectScope("main");
    
        /**
         * Test scope.
         */
        ProjectScope TEST = projectScope("test");
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-02-05 09:42
    - 1.8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * one specific module. Used for compilation and execution among others.
         *
         * <h4>Context-sensitive interpretation</h4>
         * This path type makes sense only when a main module is added on the module path by another dependency.
         * In no main module is found, the patch dependency may be added on the class path or module path
         * depending on whether {@link #CLASSES} or {@link #MODULES} is present.
         *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-05 11:52
    - 15K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/maven/lib/jline-native/README.txt

    follow JLine's directory and filename conventions.
    
    [1] https://github.com/jline/jline3/tree/master/native
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-10-24 12:01
    - 428 bytes
    - Viewed (0)
Back to top