From 8d6f1c90b06a5898d30a980b43e16e9c44f22291 Mon Sep 17 00:00:00 2001 From: San Date: Mon, 21 Mar 2022 17:12:56 +1100 Subject: [PATCH] Added simple instruction to build jar using docker Just because I don't want maven in my machine!!! :) Awesome work bro! --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 3113951..9348c02 100644 --- a/README.md +++ b/README.md @@ -160,4 +160,10 @@ You can build the .jar version of the extension to load into Burp using the foll mvn clean package +For simplicity, you can also use the maven official docker container to build the .jar extension with the following command. + +``` +docker run -it --rm --name BurpPythonGateway -v "$(pwd)":/usr/src/mymaven -w /usr/src/mymaven maven:3.3-jdk-8 mvn clean package +``` + The compiled extension file will be created under `target/` - the jar file with `-with-dependencies` in the name is the one you load into Burp.