- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 23 for finalName (0.11 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Parameter.java
* configurations, as in the case where you want to use the artifact's final name as a parameter. In this case, you * want the user to modify <code><build><finalName/></build></code> rather than specifying a value * for finalName directly in the plugin configuration section. It is also useful to ensure that - for example - a * List-typed parameter which expects items of type Artifact doesn't get a List full of Strings.
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Feb 05 09:45:47 GMT 2024 - 3.8K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java
public void deploy( String basedir, String finalName, Artifact artifact, ArtifactRepository deploymentRepository, ArtifactRepository localRepository) throws ArtifactDeploymentException { String extension = artifact.getArtifactHandler().getExtension(); File source = new File(basedir, finalName + "." + extension);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.4K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/DomUtilsTest.java
String xmlOutput = DomUtils.toXml(doc); // Verify build element ordering: directory, finalName, sourceDirectory, plugins int directoryIndex = xmlOutput.indexOf("<directory>target</directory>"); int finalNameIndex = xmlOutput.indexOf("<finalName>test-app</finalName>"); int sourceDirectoryIndex = xmlOutput.indexOf("<sourceDirectory>src/main/java</sourceDirectory>");Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 31.3K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
build.setFinalName("expected-finalName"); ExpressionEvaluator expressionEvaluator = createExpressionEvaluator(project, new Properties()); Object value = expressionEvaluator.evaluate("${project.build.directory}" + FS + "${project.build.finalName}"); assertEquals("expected-directory" + File.separatorChar + "expected-finalName", value); } @Test
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 26 19:31:34 GMT 2025 - 19.3K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java
build.setFinalName("expected-finalName"); Model model = new Model(); model.setBuild(build); ExpressionEvaluator expressionEvaluator = createExpressionEvaluator(new MavenProject(model), null, new Properties()); Object value = expressionEvaluator.evaluate("${project.build.directory}" + FS + "${project.build.finalName}");
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 26 19:31:34 GMT 2025 - 19.4K bytes - Click Count (0) -
impl/maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml
<descriptors> <descriptor>src/main/assembly/src.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> <finalName>maven-${project.version}-src</finalName> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 22.4K bytes - Click Count (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml
<descriptors> <descriptor>src/main/assembly/src.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> <finalName>maven-${project.version}-src</finalName> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 22.4K bytes - Click Count (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
plugin configurations, as in the case where you want to use the artifact's final name as a parameter. In this case, you want the user to modify {@code <build><finalName/></build>} rather than specifying a value for finalName directly in the plugin configuration section. It is also useful to ensure that - for example - a List-typed parameter which expects items of type Artifact doesn't get a List
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:28:41 GMT 2025 - 24.8K bytes - Click Count (0) -
compat/maven-model-builder/src/site/apt/index.apt
*----+------+------+ | <<<project.*>>>\ <<<pom.*>>> (<deprecated>)\ <<<*>>> (<deprecated>) | POM content (see {{{../maven-model/maven.html}POM reference}}) | <<<$\{project.version\}>>>\ | | <<<$\{project.build.finalName\}>>>\ | | <<<$\{project.artifactId\}>>>\ | | <<<$\{project.build.directory\}>>> | *----+------+------+ | <<<project.basedir>>>\ <<<pom.basedir>>> (<deprecated>)\
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 03 08:42:52 GMT 2025 - 13.2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
org = build.getDirectory(); val = interpolate(org); if (org != val) { build.setDirectory(val); } // FinalName org = build.getFinalName(); val = interpolate(org); if (org != val) { build.setFinalName(val); } // Filters
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 43.1K bytes - Click Count (0)