Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 277 for Packaging (0.04 sec)

  1. fess-crawler/pom.xml

    	<modelVersion>4.0.0</modelVersion>
    	<artifactId>fess-crawler</artifactId>
    	<packaging>jar</packaging>
    	<name>Fess Crawler</name>
    	<description>Fess Crawler is a crawler framework.</description>
    	<parent>
    		<groupId>org.codelibs.fess</groupId>
    		<artifactId>fess-crawler-parent</artifactId>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Dec 20 06:34:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ExtensibleEnumProvider.java

     * <p>
     * Maven uses extensible enumerations to allow plugins and extensions to add new values
     * to various categories like languages, scopes, and packaging types. This interface is the
     * base for all providers that register such extensions.
     * <p>
     * Implementations of this interface are discovered through the Java ServiceLoader mechanism.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

    import java.util.List;
    import java.util.Map;
    import java.util.stream.Collectors;
    
    import org.apache.maven.lifecycle.mapping.LifecyclePhase;
    
    /**
     * Lifecycle definition, with eventual plugin bindings (when they are not packaging-specific).
     */
    public class Lifecycle {
        public Lifecycle() {}
    
        public Lifecycle(String id, List<String> phases, Map<String, LifecyclePhase> defaultPhases) {
            this.id = id;
            this.phases = phases;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 23:04:37 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. CLAUDE.md

    ## Development Commands
    
    ### Build and Test
    ```bash
    # Clean build and run tests
    mvn clean test
    
    # Full build with packaging
    mvn clean package
    
    # Run tests only
    mvn test
    
    # Run specific tests
    mvn test -Dtest=CurlTest
    mvn test -Dtest=CurlRequestTest
    mvn test -Dtest=CurlResponseTest
    mvn test -Dtest=CurlExceptionTest
    ```
    
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Mon Nov 24 03:10:07 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingHelper.java

        /**
         * Updates the context class loader such that the container will search the project realm when the model builder
         * injects the lifecycle bindings from the packaging in the next step. The context class loader is to be reset by
         * the project builder when the project is fully assembled.
         *
         * @param project The project whose class realm should be selected, must not be {@code null}.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

            MavenProject project = getMavenProject(artifactId);
            Parent parent = new Parent();
            parent.setGroupId(parentProject.getGroupId());
            parent.setArtifactId(parentProject.getArtifactId());
            project.getModel().setParent(parent);
            project.setPackaging(packaging);
            return project;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 20:39:03 UTC 2025
    - 28K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

                    .activeByDefault(entropy.nextBoolean())
                    .jdk("jdk" + Long.toHexString(entropy.nextLong()))
                    .file(af)
                    .property(ap)
                    .os(ao)
                    .packaging("pom")
                    .build();
            Map<String, String> props = new HashMap<>();
            int count = entropy.nextInt(10);
            for (int i = 0; i < count; i++) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  8. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/GAVUtilsTest.java

                        <groupId>com.example</groupId>
                        <artifactId>parent-project</artifactId>
                        <version>1.0.0</version>
                        <packaging>pom</packaging>
                    </project>
                    """;
    
                String childPomXml = """
                    <?xml version="1.0" encoding="UTF-8"?>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  9. impl/maven-core/src/test/java/org/apache/maven/project/DefaultProjectBuilderTest.java

            return Model.newBuilder()
                    .groupId(groupId)
                    .artifactId(artifactId)
                    .version(version)
                    .packaging("jar")
                    .build();
        }
    
        /**
         * Mock implementation of ModelBuilderResult for testing.
         */
        private static class MockModelBuilderResult implements ModelBuilderResult {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            validateStringNotEmpty("packaging", problems, Severity.ERROR, Version.BASE, m.getPackaging(), m);
    
            if (!m.getModules().isEmpty()) {
                if (!"pom".equals(m.getPackaging())) {
                    addViolation(
                            problems,
                            Severity.ERROR,
                            Version.BASE,
                            "packaging",
                            null,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 03 15:06:05 UTC 2025
    - 66.8K bytes
    - Viewed (0)
Back to top