-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
79 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
...n-plugin/src/main/java/eu/maveniverse/maven/toolbox/plugin/gav/GavCopyTransitiveMojo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Copyright (c) 2023-2024 Maveniverse Org. | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v2.0 | ||
* which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-v20.html | ||
*/ | ||
package eu.maveniverse.maven.toolbox.plugin.gav; | ||
|
||
import eu.maveniverse.maven.toolbox.plugin.GavMojoSupport; | ||
import eu.maveniverse.maven.toolbox.shared.Output; | ||
import eu.maveniverse.maven.toolbox.shared.ResolutionScope; | ||
import eu.maveniverse.maven.toolbox.shared.ToolboxCommando; | ||
import org.apache.maven.plugins.annotations.Mojo; | ||
import org.apache.maven.plugins.annotations.Parameter; | ||
import picocli.CommandLine; | ||
|
||
/** | ||
* Resolves Maven Artifact transitively and copies all of them to target. | ||
*/ | ||
@CommandLine.Command( | ||
name = "copy-transitive", | ||
description = "Resolves Maven Artifact transitively and copies all of them to target") | ||
@Mojo(name = "gav-copy-transitive", requiresProject = false, threadSafe = true) | ||
public final class GavCopyTransitiveMojo extends GavMojoSupport { | ||
/** | ||
* The target spec. | ||
*/ | ||
@CommandLine.Parameters(index = "0", description = "The target spec", arity = "1") | ||
@Parameter(property = "targetSpec", required = true) | ||
private String targetSpec; | ||
|
||
/** | ||
* The comma separated GAVs to resolve. | ||
*/ | ||
@CommandLine.Parameters(index = "1", description = "The comma separated GAVs to resolve", arity = "1") | ||
@Parameter(property = "gav", required = true) | ||
private String gav; | ||
|
||
/** | ||
* The resolution scope to resolve (default is 'runtime'). | ||
*/ | ||
@CommandLine.Option( | ||
names = {"--scope"}, | ||
defaultValue = "runtime", | ||
description = "Resolution scope to resolve (default 'runtime')") | ||
@Parameter(property = "scope", defaultValue = "runtime", required = true) | ||
private String scope; | ||
|
||
/** | ||
* Comma separated list of BOMs to apply. | ||
*/ | ||
@CommandLine.Option( | ||
names = {"--boms"}, | ||
defaultValue = "", | ||
description = "Comma separated list of BOMs to apply") | ||
@Parameter(property = "boms") | ||
private String boms; | ||
|
||
@Override | ||
protected boolean doExecute(Output output, ToolboxCommando toolboxCommando) throws Exception { | ||
return toolboxCommando.copyTransitive( | ||
ResolutionScope.parse(scope), | ||
toolboxCommando.loadGavs(csv(gav), csv(boms)), | ||
toolboxCommando.artifactSink(output, targetSpec), | ||
output); | ||
} | ||
} |