- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 280 for Packaging (0.04 sec)
-
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
@Test void testParentPomPackagingMustBePom() throws Exception { assertThrows( ProjectBuildingException.class, () -> buildPom("parent-pom-packaging/sub"), "Wrong packaging of parent POM was not rejected"); } /** MNG-522, MNG-3018 */ @Test void testManagedPluginConfigurationAppliesToImplicitPluginsIntroducedByPackaging() throws Exception {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 94.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
} @Override public Artifact createArtifact(String groupId, String artifactId, String version, String packaging) { return artifactFactory.createBuildArtifact(groupId, artifactId, version, packaging); } @Override public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String type, String classifier) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 31.2K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
</field> <field> <name>packaging</name> <version>4.0.0+</version> <description> The type of artifact this project produces, for example {@code jar}, {@code war}, {@code ear}, {@code pom}. Plugins can create their own packaging, and therefore their own packaging types,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 26 03:07:35 UTC 2025 - 133.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java
* the {@code /project/subprojects/subproject} elements of the POM in the aggregator project. * Note that the aggregator project is required to have a {@code pom} packaging.</p> * * <p><dfn>Project inheritance</dfn> defines a parent-child relationship between projects. * The <dfn>child project</dfn> inherits all the information from the <dfn>parent project</dfn> * POM.</p> * */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:13:42 UTC 2025 - 7.7K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
current = topDirectory.relativize(current); } logger.info(" from " + current); } // ----------[ packaging ]---------- prefix = chars('-', Math.max(0, (lineLength - project.getPackaging().length() - 4) / 2)); suffix = chars('-', Math.max(0, lineLength - project.getPackaging().length() - 4 - prefix.length()));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 17.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/event/ExecutionEventLogger.java
current = topDirectory.relativize(current); } logger.info(" from " + current); } // ----------[ packaging ]---------- prefix = chars('-', Math.max(0, (lineLength - project.getPackaging().length() - 4) / 2)); suffix = chars('-', Math.max(0, lineLength - project.getPackaging().length() - 4 - prefix.length()));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Dec 13 15:40:45 UTC 2024 - 17.5K bytes - Viewed (0) -
compat/maven-model-builder/src/site/apt/index.apt
By default, every model field is inherited as-is from parent, with a few exceptions that are intentionally not inherited: <<<modelVersion>>>, <<<artifactId>>>, <<<packaging>>>, <<<profiles>>> (injected in phase 1) and <<<prerequisites>>>. Notice that the 5 URLs from the model (<<<project.url>>>, <<<project.scm.connection>>>, <<<project.scm.developerConnection>>>,
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 03 08:42:52 UTC 2025 - 13.2K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
+ artifact.getArtifactId() + "</artifactId>" + "<version>" + artifact.getBaseVersion() + "</version>" + "<packaging>" + artifact.getType() + "</packaging>" + "</project>"; return new StubModelSource(xml, artifact); } /**
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
* <ul> * <li>The project's artifacts ({@link Project#getArtifacts()}): * <ul> * <li>The POM artifact (always present)</li> * <li>The main project artifact (if applicable based on packaging)</li> * </ul> * </li> * <li>All attached artifacts in the order they were attached</li> * </ul> * The contents depend on the current lifecycle phase when this method is called, as artifacts
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jan 30 23:29:13 UTC 2025 - 12K bytes - Viewed (0)