d1c336
diff -ur aqute-bnd-5.2.0.orig/biz.aQute.bnd/src/aQute/bnd/main/bnd.java aqute-bnd-5.2.0/biz.aQute.bnd/src/aQute/bnd/main/bnd.java
d1c336
--- aqute-bnd-5.2.0.orig/biz.aQute.bnd/src/aQute/bnd/main/bnd.java	2020-10-14 22:03:53.000000000 +0200
d1c336
+++ aqute-bnd-5.2.0/biz.aQute.bnd/src/aQute/bnd/main/bnd.java	2021-08-02 18:01:59.894715497 +0200
d1c336
@@ -106,7 +106,6 @@
d1c336
 import aQute.bnd.osgi.Verifier;
d1c336
 import aQute.bnd.osgi.eclipse.EclipseClasspath;
d1c336
 import aQute.bnd.print.JarPrinter;
d1c336
-import aQute.bnd.repository.maven.provider.NexusCommand;
d1c336
 import aQute.bnd.service.Actionable;
d1c336
 import aQute.bnd.service.RepositoryPlugin;
d1c336
 import aQute.bnd.service.action.Action;
d1c336
@@ -3922,54 +3921,6 @@
d1c336
 	}
d1c336
 
d1c336
 	/**
d1c336
-	 * Resolve command
d1c336
-	 *
d1c336
-	 * @throws Exception
d1c336
-	 */
d1c336
-
d1c336
-	public void _resolve(ResolveCommand.ResolveOptions options) throws Exception {
d1c336
-		ResolveCommand rc = new ResolveCommand(this);
d1c336
-		String help = options._command()
d1c336
-			.subCmd(options, rc);
d1c336
-		if (help != null)
d1c336
-			out.println(help);
d1c336
-		getInfo(rc);
d1c336
-		rc.close();
d1c336
-	}
d1c336
-
d1c336
-	/**
d1c336
-	 * Remote command
d1c336
-	 *
d1c336
-	 * @throws Exception
d1c336
-	 */
d1c336
-
d1c336
-	public void _remote(RemoteCommand.RemoteOptions options) throws Exception {
d1c336
-		RemoteCommand rc = new RemoteCommand(this, options);
d1c336
-		String help = options._command()
d1c336
-			.subCmd(options, rc);
d1c336
-		if (help != null)
d1c336
-			out.println(help);
d1c336
-		getInfo(rc);
d1c336
-		rc.close();
d1c336
-	}
d1c336
-
d1c336
-	/**
d1c336
-	 * Nexus commands
d1c336
-	 *
d1c336
-	 * @throws Exception
d1c336
-	 */
d1c336
-
d1c336
-	public void _nexus(NexusCommand.NexusOptions options) throws Exception {
d1c336
-		NexusCommand rc = new NexusCommand(this, options);
d1c336
-		String help = options._command()
d1c336
-			.subCmd(options, rc);
d1c336
-		if (help != null)
d1c336
-			out.println(help);
d1c336
-		getInfo(rc);
d1c336
-		rc.close();
d1c336
-	}
d1c336
-
d1c336
-	/**
d1c336
 	 * Export a bndrun file
d1c336
 	 */
d1c336
 	interface ExportOptions extends ProjectWorkspaceOptions {
d1c336
@@ -4424,15 +4375,6 @@
d1c336
 		}
d1c336
 	}
d1c336
 
d1c336
-	@Description("Start an interactive shell")
d1c336
-	public void _shell(Shell.ShellOptions options) throws Exception {
d1c336
-		try (Shell shell = new Shell(this, options)) {
d1c336
-			shell.loop();
d1c336
-		} finally {
d1c336
-			out.println("done");
d1c336
-		}
d1c336
-	}
d1c336
-
d1c336
 	public Workspace getWorkspace() {
d1c336
 		return workspace;
d1c336
 	}
d1c336
@@ -4479,24 +4421,6 @@
d1c336
 
d1c336
 	}
d1c336
 
d1c336
-	@Description("Generate and export reports of a workspace, a project or of a jar.")
d1c336
-	public void _exportreport(ExportReportCommand.ReporterOptions options) throws Exception {
d1c336
-		ExportReportCommand mc = new ExportReportCommand(this);
d1c336
-		mc.run(options);
d1c336
-		getInfo(mc);
d1c336
-	}
d1c336
-
d1c336
-	@Description("Maintain Maven Bnd Repository GAV files")
d1c336
-	public void _mbr(MbrCommand.MrOptions options) throws Exception {
d1c336
-		MbrCommand c = new MbrCommand(this, options);
d1c336
-		CommandLine cl = new CommandLine(this);
d1c336
-		String s = cl.subCmd(options, c);
d1c336
-		if (s != null) {
d1c336
-			out.println(s);
d1c336
-		}
d1c336
-		getInfo(c);
d1c336
-	}
d1c336
-
d1c336
 	@Description("Generate source code")
d1c336
 	interface GenerateOptions extends ProjectWorkspaceOptions {
d1c336