- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 280 for Packaging (0.41 sec)
-
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) -
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) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java
@Test void testInvalidAggregatorPackaging() throws Exception { SimpleProblemCollector result = validate("invalid-aggregator-packaging-pom.xml"); assertViolations(result, 0, 1, 0); assertTrue(result.getErrors().get(0).contains("Aggregator projects require 'pom' as packaging.")); } @Test void testMissingDependencyArtifactId() throws Exception {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 33.9K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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) -
impl/maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 6.7K bytes - Viewed (0) -
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)