forked from pool/aqute-bnd
66ef15b8c0
- Update to aqute-bnd 5.1.1 - Required for Tomcat 9.0.37 (separate submit request) OBS-URL: https://build.opensuse.org/request/show/925883 OBS-URL: https://build.opensuse.org/package/show/Java:packages/aqute-bnd?expand=0&rev=15
92 lines
2.6 KiB
Diff
92 lines
2.6 KiB
Diff
diff -Napur bnd-5.1.1.REL.orig/biz.aQute.bnd/src/aQute/bnd/main/bnd.java bnd-5.1.1.REL/biz.aQute.bnd/src/aQute/bnd/main/bnd.java
|
|
--- bnd-5.1.1.REL.orig/biz.aQute.bnd/src/aQute/bnd/main/bnd.java 2020-06-16 23:03:04.000000000 +0200
|
|
+++ bnd-5.1.1.REL/biz.aQute.bnd/src/aQute/bnd/main/bnd.java 2021-02-17 12:56:39.434022335 +0100
|
|
@@ -104,7 +104,6 @@ import aQute.bnd.osgi.Resource;
|
|
import aQute.bnd.osgi.Verifier;
|
|
import aQute.bnd.osgi.eclipse.EclipseClasspath;
|
|
import aQute.bnd.print.JarPrinter;
|
|
-import aQute.bnd.repository.maven.provider.NexusCommand;
|
|
import aQute.bnd.service.Actionable;
|
|
import aQute.bnd.service.RepositoryPlugin;
|
|
import aQute.bnd.service.action.Action;
|
|
@@ -3905,54 +3904,6 @@ public class bnd extends Processor {
|
|
}
|
|
|
|
/**
|
|
- * Resolve command
|
|
- *
|
|
- * @throws Exception
|
|
- */
|
|
-
|
|
- public void _resolve(ResolveCommand.ResolveOptions options) throws Exception {
|
|
- ResolveCommand rc = new ResolveCommand(this);
|
|
- String help = options._command()
|
|
- .subCmd(options, rc);
|
|
- if (help != null)
|
|
- out.println(help);
|
|
- getInfo(rc);
|
|
- rc.close();
|
|
- }
|
|
-
|
|
- /**
|
|
- * Remote command
|
|
- *
|
|
- * @throws Exception
|
|
- */
|
|
-
|
|
- public void _remote(RemoteCommand.RemoteOptions options) throws Exception {
|
|
- RemoteCommand rc = new RemoteCommand(this, options);
|
|
- String help = options._command()
|
|
- .subCmd(options, rc);
|
|
- if (help != null)
|
|
- out.println(help);
|
|
- getInfo(rc);
|
|
- rc.close();
|
|
- }
|
|
-
|
|
- /**
|
|
- * Nexus commands
|
|
- *
|
|
- * @throws Exception
|
|
- */
|
|
-
|
|
- public void _nexus(NexusCommand.NexusOptions options) throws Exception {
|
|
- NexusCommand rc = new NexusCommand(this, options);
|
|
- String help = options._command()
|
|
- .subCmd(options, rc);
|
|
- if (help != null)
|
|
- out.println(help);
|
|
- getInfo(rc);
|
|
- rc.close();
|
|
- }
|
|
-
|
|
- /**
|
|
* Export a bndrun file
|
|
*/
|
|
interface ExportOptions extends ProjectWorkspaceOptions {
|
|
@@ -4462,24 +4413,6 @@ public class bnd extends Processor {
|
|
|
|
}
|
|
|
|
- @Description("Generate and export reports of a workspace, a project or of a jar.")
|
|
- public void _exportreport(ExportReportCommand.ReporterOptions options) throws Exception {
|
|
- ExportReportCommand mc = new ExportReportCommand(this);
|
|
- mc.run(options);
|
|
- getInfo(mc);
|
|
- }
|
|
-
|
|
- @Description("Maintain Maven Bnd Repository GAV files")
|
|
- public void _mbr(MbrCommand.MrOptions options) throws Exception {
|
|
- MbrCommand c = new MbrCommand(this, options);
|
|
- CommandLine cl = new CommandLine(this);
|
|
- String s = cl.subCmd(options, c);
|
|
- if (s != null) {
|
|
- out.println(s);
|
|
- }
|
|
- getInfo(c);
|
|
- }
|
|
-
|
|
@Description("Generate source code")
|
|
interface GenerateOptions extends ProjectWorkspaceOptions {
|
|
|