Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ void conflictingSettings(
Map<String, String> logs = invoke(
cwd,
userHome,
List.of("eu.maveniverse.maven.plugins:toolbox:0.6.1:help"),
List.of("eu.maveniverse.maven.plugins:toolbox:0.6.2:help"),
List.of("--force-interactive"));

String log = logs.get("eu.maveniverse.maven.plugins:toolbox:0.6.1:help");
String log = logs.get("eu.maveniverse.maven.plugins:toolbox:0.6.2:help");
assertTrue(log.contains("https://repo1.maven.org/maven2"), log);
assertFalse(log.contains("https://repo.maven.apache.org/maven2"), log);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* @see <a href="https://github.com/maveniverse/toolbox">Maveniverse Toolbox</a>
*/
public class ToolboxTool implements ExecutorTool {
private static final String TOOLBOX = "eu.maveniverse.maven.plugins:toolbox:0.5.2:";
private static final String TOOLBOX = "eu.maveniverse.maven.plugins:toolbox:0.6.2:";

private final ExecutorHelper helper;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void dump3(
List.of(mvn3ExecutorRequestBuilder()
.cwd(cwd)
.userHomeDirectory(userHome)
.argument("eu.maveniverse.maven.plugins:toolbox:0.5.2:gav-dump")
.argument("eu.maveniverse.maven.plugins:toolbox:0.6.2:gav-dump")
.argument("-l")
.argument(logfile)
.build()));
Expand All @@ -95,7 +95,7 @@ void dump4(
List.of(mvn4ExecutorRequestBuilder()
.cwd(cwd)
.userHomeDirectory(userHome)
.argument("eu.maveniverse.maven.plugins:toolbox:0.5.2:gav-dump")
.argument("eu.maveniverse.maven.plugins:toolbox:0.6.2:gav-dump")
.argument("-l")
.argument(logfile)
.build()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void testIt() throws Exception {
Verifier verifier = newVerifier(basedir.toString(), null);
verifier.addCliArgument("-DasProperties");
verifier.addCliArgument("-DtoFile=dump.properties");
verifier.addCliArgument("eu.maveniverse.maven.plugins:toolbox:0.5.2:gav-dump");
verifier.addCliArgument("eu.maveniverse.maven.plugins:toolbox:0.6.2:gav-dump");
verifier.execute();
verifier.verifyErrorFreeLog();

Expand Down