Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed Mar 23, 2024
1 parent 4e1b3d2 commit 88bb102
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import eu.maveniverse.maven.toolbox.plugin.gav.GavClasspathMojo;
import eu.maveniverse.maven.toolbox.plugin.gav.GavCopyMojo;
import eu.maveniverse.maven.toolbox.plugin.gav.GavCopyTransitiveMojo;
import eu.maveniverse.maven.toolbox.plugin.gav.GavDumpMojo;
import eu.maveniverse.maven.toolbox.shared.Output;
import eu.maveniverse.maven.toolbox.shared.ToolboxCommando;
Expand All @@ -19,7 +20,7 @@
*/
@CommandLine.Command(
name = "toolbox",
subcommands = {GavClasspathMojo.class, GavCopyMojo.class, GavDumpMojo.class},
subcommands = {GavClasspathMojo.class, GavCopyMojo.class, GavCopyTransitiveMojo.class, GavDumpMojo.class},
versionProvider = CLI.class,
description = "Toolbox CLI",
mixinStandardHelpOptions = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,23 @@
@CommandLine.Command(name = "copy", description = "Resolves Maven Artifact and copies it to target")
@Mojo(name = "gav-copy", requiresProject = false, threadSafe = true)
public final class GavCopyMojo 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;

/**
* Comma separated list of BOMs to apply.
*/
@CommandLine.Option(
names = {"--boms"},
defaultValue = "",
Expand Down
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);
}
}

0 comments on commit 88bb102

Please sign in to comment.